-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprof_registration.html
87 lines (80 loc) · 4.27 KB
/
prof_registration.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
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>Registration Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<style type="text/css">
body{
background-color: black;
}
</style>
</head>
<body>
<script src="http://mymaplist.com/js/vendor/TweenLite.min.js"></script>
<div class="container py-5">
<div class="row">
<div class="col-md-12">
<h2 class="text-center text-white mb-4">Sign-Up For Professors!</h2>
<div class="row">
<div class="col-md-6 mx-auto">
<span class="anchor" id="formLogin"></span>
<!-- form card login -->
<div class="card rounded-0">
<div class="card-header">
<h3 class="mb-0">Registration</h3>
</div>
<div class="card-body">
<form method="post" action="register.php">
<div class="form-group">
<label for="uname1">Full name</label>
<input type="text" class="form-control form-control-lg rounded-0" name = "fullName" id="uname1" placeholder="Enter your full name">
</div>
<div class="form-group">
<label>Username</label>
<input type="password" class="form-control form-control-lg rounded-0" id="pwd1" name="userName" placeholder="Username">
</div>
<div class="form-group">
<label>Gender</label></br>
<label>Male</label>       <input type="radio" id="pwd1" name="gender" value="male"></br>
<label>Female</label>    <input type="radio" id="pwd1" name="gender" value="female">
</div>
<div class="form-group">
<label>Standard(which standards do you teach)</label>
<select name="std">
<option value="X-SSC"/>X-SSC</option/>
<option value="X-ICSE"/>X-ICSE</option/>
<option value="HSC-Maharashtra"/>HSC-Maharashtra</option/>
</select/><br/><br/>
</div>
<div class="form-group">
<label>Email ID</label>
<input type="email" class="form-control form-control-lg rounded-0" id="pwd1" placeholder="Email ID" name="emailid">
</div>
<div class="form-group">
<label>Mobile No</label>
<input type="text" class="form-control form-control-lg rounded-0" id="pwd1" placeholder="Mobile Number" name="no">
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control form-control-lg rounded-0" id="pwd1" placeholder="password" name="pass">
</div>
<div class="form-group">
<label>Reenter Password</label>
<input type="password" class="form-control form-control-lg rounded-0" id="pwd1" placeholder="Confirm Password" name="newpass">
</div>
<center><input type="submit" class="btn btn-success btn-lg float-right" value="Register"></center>
</form>
</div>
<!--/card-block-->
</div>
<!-- /form card login -->
</div>
</div>
<!--/row-->
</div>
<!--/col-->
</div>
<!--/row-->
</div>
<!--/container-->
</body>