-
Notifications
You must be signed in to change notification settings - Fork 0
/
vehicle registration.php
73 lines (64 loc) · 3.36 KB
/
vehicle registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<?php include('./global/') ?>
<div class="container mt-3">
<div class="jumbotron text-center">
<h1>VEHICLE VALIDATION SYSTEM</h1>
<p><Main>Make your city easier</Main></p>
</div>
<h2 class="bg-info text-center p-3">Vehicle's Registration</h2>
<div>
<form action="" class="m-auto p-3">
<div class="form-group">
<label for="Owner-name">Owner's Name : </label>
<input type="text" class="form-control" name="Owner-name">
</div>
<div class="form-group">
<label for="email">Email : </label>
<input type="email" class="form-control" name="email" required>
</div>
<div class="form-group">
<label for="number">Driving License Number : </label>
<input type="number" class="form-control" name="number" required>
</div>
<div class="form-group">
<label for="number">Owner's NID : </label>
<input type="number" class="form-control" name="number" required>
</div>
<div class="form-group">
<label for="picture">Choose Picture : </label>
<input type="file" class="form-control" name="picture">
</div>
<div class="form-group">
<label for="type">Vehicle's Type : </label>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Choose vehicle from here
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
<button class="dropdown-item" type="button">Car</button>
<button class="dropdown-item" type="button">Bus</button>
<button class="dropdown-item" type="button">Bike</button>
<button class="dropdown-item" type="button">Truck</button>
</div>
</div>
</div>
<div class="form-group">
<input type="submit" class="btn btn-secondary" value="Submit">
</div>
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>