-
Notifications
You must be signed in to change notification settings - Fork 5
/
commercial.php
94 lines (84 loc) · 4.17 KB
/
commercial.php
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<title>Login V17</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="Login_v17/images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/vendor/animsition/css/animsition.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="Login_v17/vendor/daterangepicker/daterangepicker.css">
<!--===============================================================================================-->
<link href="https://fonts.googleapis.com/css?family=Supermercado+One" rel="stylesheet">
<!--===============================================================================================-->
<style>
#cont{
background-color:#ebfcf9;
}
#heading,#heading2{
font-family: 'Supermercado One', cursive;
}
#des{
height:50px;
}
#header{
background-color:#1d7070;
height:80px;
width:90%;
color:#fff;
}
#white{
color:#fff;
}
</style>
</head>
<body style="background-color:white">
<div class="container-fluid" id="header">
<div class="col-md-3" >
<h2 id="aa">Blockchain Network</h2></div>
<div class="col-md-2" style="float:right"><a href="Login_v17/index2.php"><h2 id="white">LOGOUT</h2></a></div>
</div><br>
<div class="container" id="cont">
<h1 id="heading">Construct the world around you</h2>
<br><br><br><br>
<hr>
<h2 id="heading2">What do you expect?</h2>
<form method="post" action="commercial_php.php">
<div class="form-group">
<label for="type" class="control-label" id="l">Enter type of building::</label>
<input class="form-control" placeholder="Enter type of building" type="text" id="type" name="type" required/>
</div>
<div class="form-group">
<label for="size" class="control-label" id="l">Enter size of building::</label>
<input class="form-control" placeholder="Enter Size" type="text" id="size" name="size" required/>
</div>
<div class="form-group">
<label for="storeys" class="control-label" id="l">Number Of Storeys:</label>
<input type="text" placeholder="Enter Number Of Storeys" class="form-control" id="storeys" name="storeys" required/>
</div>
<div>
<label for="des" class="control-label" id="l">Description:</label>
<input type="text" placeholder="" class="form-control" id="des" name="des" required/>
</div>
<input type="submit" value="submit" name="submit" style="margin-top:10px;margin-left:450px"/>
</form>
</div>
<hr>
<div class="col-md-12 text-center small" id="foot1"><p>© 2017 ampleSamples Group.All Rights Reserved.</p></div>
<div class="col-md-12 text-center small" id="foot2"><p>MNNIT</p></div>
</body>
</html>