-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.php
More file actions
102 lines (77 loc) · 3.35 KB
/
form.php
File metadata and controls
102 lines (77 loc) · 3.35 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
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
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="iform.css">
</head>
<body style="background-color:#ffffff">
<nav class="navbar navbar-expand-lg navbar sticky-top" style="background-color: #639ea4">
<a class="navbar-brand" style="color:#000000" href="welcome.php">Park.<span style="color:#ff9933">Le</span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" style="color:#000000" href="welcome.php">Home </a>
</li>
<li class="nav-item">
<a class="nav-link" style="color:#000000" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" style="color:#000000" href="#">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link" style="color:#000000" href="#">Donate</a>
</li>
</ul>
<form class="form-inline">
<a href="logout.php" class="btn btn-danger"
">Sign Out of Your Account</a>
</form>
</nav>
<div class ="jumbotron" style="background-color:#ffff99">
<div class="page-header">
<h1 style="color: #000066">Fill up your details so that we know YOU better !!</h1> </div>
<p style="color:#000066">Don't worry, this is as easy as booking your parking with us ;)</p>
</div>
<form action="insert.php" method="post">
<div class="form-group col-md-5">
<label for="First_Name">First Name</label>
<input type="text" class="form-control" id="First_Name" name="First_Name" placeholder="Lionel">
</div>
<div class="form-group col-md-5">
<label for="Last_Name">Last name</label>
<input type="text" class="form-control" id="Last_Name" name="Last_Name" placeholder="Messi">
</div>
<div class="form-group col-md-1">
<label for ="age"> Age </label>
<input type="number" class="form-control" id="age" name="age">
</div>
<div class="form-group col-md-8">
<label for="inputAddress">Address</label>
<input type="text" class="form-control" name="address" min="1" id="inputAddress" >
</div>
<div class="form-group col-md-3">
<label for="inputCity">City</label>
<input type="text" class="form-control" name="city" id="inputCity">
</div>
<div class="form-group col-md-2">
<label for ="Number_of_Cars"> Number Of Vehicles</label>
<input type="number" class="form-control" id="Number_of_Cars" name="Number_of_Cars">
</div>
<div class="form-group col-md-3">
<label for="mno">Mobile Number</label>
<input type="text" class="form-control" name="Mobile_Number" id="Mobile_Number">
</div>
<br>
<div class="btnnn">
<button type="submit" class="btn btn-dark btn-lg">Submit</button>
</div>
<br>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</form>
</body>
</html>