-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
78 lines (78 loc) · 2.95 KB
/
index.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
<?php
include "navbarloginfalse.php";
?>
<!DOCTYPE HTML>
<html>
<body>
<div class="row" style="margin:auto">
<div class="col">
<div class="container" style="position:relative; top:45%; left:20%; width:800px">
<h1 class="font-weight-bold">College of Engineering and Technology</h1>
<h2 class="font-weight-bolder">Department of Information Technology</h2>
</div>
</div>
<div class="col" style="margin:auto">
<br />
<form method= "POST" action="registration.php" class="form-control bg-light w-75 p-3 float-right">
<div class="form-group">
<label for="uname"class="font-weight-bold" >Username</label>
<input type="text" name="uname" id="uname" class="form-control" required>
</div>
<div class="form-group">
<label for="upass" class="font-weight-bold">Password</label>
<input type="password" name="upass" class="form-control" required>
</div>
<div class="form-group">
<label for="rupass" class="font-weight-bold">Retype Password</label>
<input type="password" name="rupass" class="form-control" required>
</div>
<div class="form-group">
<label for="regno" class="font-weight-bold">Registration Number</label>
<input type="number" name="regno" class="form-control" required>
</div>
<div class="form-group">
<label for="Full Name" class="font-weight-bold">Full Name</label>
<input type="text" name="fname" class="form-control" required>
</div>
<div class="form-group">
<label for="emailid" class="font-weight-bold">E-Mail</label>
<input type="text" name="emailid" class="form-control" required>
</div>
<div class="form-group">
<div class="row">
<div class="col">
<select class="form-control" name="sem">
<option value="0">All</option>
<option value="1">First</option>
<option value="2">Second</option>
<option value="3">Third</option>
<option value="4">Fourth</option>
<option value="5">Fifth</option>
<option value="6">Sixth</option>
<option value="7">Seventh</option>
<option value="8">Eighth</option>
</select>
</div>
<div class="col">
<label for="sem" class="font-weight-bold">   Semester</label>
</div>
</div>
</div>
<div class="form-group">
<div class="row">
<div class="col">
<select class="form-control" name="usertype">
<option value="teacher">Faculty</option>
<option value="student">Student</option>
</select>
</div>
<div class="col">
<label for="fac-stu" class="font-weight-bold">   User Type</label>
</div>
</div>
</div>
<button type="submit" name="submit" value="submit" class="form-control btn-block btn-success" ><font color="white">REGISTER</font></button>
</form>
</div>
</body>
</html>