-
Notifications
You must be signed in to change notification settings - Fork 1
/
stu.html
66 lines (58 loc) · 2.33 KB
/
stu.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
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="stu.css">
</head>
<body>
<div class=" col signup_form">
<div class="head">Welcome Students</div>
<form class="form-group form" action="" method="POST">
<div class="bl"><h2> Students</h2></div>
<h2>Registration</h2>
<hr>
<p>Create your Account for Free.</p>
<div class="row">
<div class="col">
<label for="ID">Student ID</label>
<input type="text" class="form-control" placeholder="Student ID">
</div>
<div class="col">
<label for="ID">Branch</label>
<input type="text" class="form-control" placeholder="Branch">
</div>
</div>
<div class="row">
<div class="col">
<label for="Name">First Name</label>
<input type="text" class="form-control" placeholder="First Name">
</div>
<div class="col">
<label for="Name">Last Name</label>
<input type="text" class="form-control" placeholder="Last Name">
</div>
</div>
<div class="col">
<label for="Email">Email</label>
<input type="text" class="form-control" placeholder="Email">
</div>
<div class="col">
<label for="Password">Password</label>
<input type="password" class="form-control" placeholder="Password">
</div>
<div class="col">
<label for="Password">Confirm Password</label>
<input type="password" class="form-control" placeholder="Password">
</div>
<div class="col">
<button type="submit" class="btn-sm btnn" >Register</button>
</div>
</form>
</div>
</body>
</html>