-
Notifications
You must be signed in to change notification settings - Fork 3
/
create.html
79 lines (68 loc) · 3.1 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projcast-Login</title>
<link rel="stylesheet" href="login.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="heading">
<h2>Projcast Create Account</h2>
<!-- <div class="nav-logo">
<div class="logo">Logo</div>
</div> -->
</div>
</header>
<main>
<div class="login">
<form id="login-form" method="post" action="login.php">
<label><b>Create Account As:</b></label>
<select id="role" name="role" required>
<option value="disabled" disabled selected>Select your Role</option>
<option value="student">Student</option>
<option value="administrator">Administrator</option>
</select>
<br><br>
<label><b>Full Name</b></label>
<input type="text" id="Uname" name="Uname" placeholder="Full Name" required>
<br><br>
<label><b>User Name</b></label>
<input type="text" id="Uname" name="Uname" placeholder="Username" required>
<br><br>
<label>Email Id:</label>
<input type="email" id="email" name="email">
<br><br>
<label><b>Institute</b></label>
<select id="institute" name="role" required>
<option value="disabled" disabled selected>Select your Institute</option>
<option value="1">Veermata Jijabai Institute of Technology(VJTI)</option>
<option value="2">XLRI - Xavier Labour Relations Institute, Jamshedpur</option>
<option value="3">Indian Institute of Management - [IIMR], Ranchi</option>
</select>
<br><br>
<label><b>Password</b></label>
<input type="password" id="Pass" name="Pass" placeholder="Password" required>
<br><br>
<label><b>Confirm Password</b></label>
<input type="password" id="Pass" name="Pass" placeholder="Password" required>
<br><br>
<!-- <input type="submit" id="log" name="log" value="Log In "> -->
<div class="logintoprofile">
<button class="login"><a href="indexafterlogin.html">Sign In</a></button>
</div>
<br><br>
<label>
<input type="checkbox" id="check" name="remember"> Remember me
</label>
<br><br>
<p class="backhome"><a href="index.html"> Back to Home Page</a></p>
</form>
</div>
</main>
</body>
</html>