-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (67 loc) · 3 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Registration</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styless.css"
</head>
<body>
<form role="form" method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">
<div class="form-group row">
<label for="regno" class="col-sm-2 col-form-label">Registeration Number</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="regno" name="regno" placeholder="Enter Registration number">
</div>
</div>
<div class="form-group row">
<label for="fname" class="col-sm-2 col-form-label">First Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="fname" name="fname" placeholder="First Name">
</div>
</div>
<div class="form-group row">
<label for="mname" class="col-sm-2 col-form-label">Middle Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="mname" name="mname" placeholder="Middle Name">
</div>
</div>
<div class="form-group row">
<label for="sname" class="col-sm-2 col-form-label">Surname</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="sname" name="sname" placeholder="Surname">
</div>
</div>
<div class="form-group row">
<label for="age" class="col-sm-2 col-form-label">Age</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="age" name="age" placeholder="Age">
</div>
</div>
<div class="form-group row">
<label for="course" class="col-sm-2 col-form-label">Course</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="course" name="course" placeholder="Course">
</div>
</div>
<div class="form-group row">
<label for="guardian" class="col-sm-2 col-form-label">Guardian</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="guardian" name="guardian" placeholder="Guardian">
</div>
</div>
<div class="form-group row">
<label for="tel" class="col-sm-2 col-form-label">Telephone Number</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="tel" name="tel" placeholder="07...">
</div>
</div>
<div class="form-group row">
<div class="offset-sm-2 col-sm-10">
<input type="submit" value="Sign in" name="submit" class="btn btn-primary"/>
</div>
</div>
</form>
</body>
</html>