-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
42 lines (33 loc) · 1.6 KB
/
home.html
File metadata and controls
42 lines (33 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<title>Profit Prediction</title>
</head>
<body>
<h1><div style="text-align:center"><font color="blue">Profit prediction from Startup spendings</font></div></h1>
<hr>
</<br>>
<h2><div style="text-align:center">Enter the values for R&D Spend, Administration Spend and Marketing Spend</div></h2>
</<br>>
<div class='container'>
<div class='row'>
<div class='col-6'>
<form method="POST" action="/predict">
<div class="form-group">
<label for="Administration"><p class="font-weight-bold">Administration_spend</p></label>
<input type="text" name="Administration">
<small id="AdministrationHelp" class="form-text text-muted">Enter the value for Administrative_spend</small>
</div>
<div class="form-group">
<label for="MRRD"><p class="font-weight-bold">Marketing and R&D</p></label>
<input type="text" name="MRRD">
<small id="MRRDHelp" class="form-text text-muted">Enter the value for Marketing and R&D spend</small>
</div>
<input class='btn btn-primary' type='submit' value='Submit'>
</form>
</div>
</div>
</div>
</body>
</html>