forked from nihalsrivastava02/Hackathon-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse_registration.html
More file actions
56 lines (52 loc) · 2.08 KB
/
course_registration.html
File metadata and controls
56 lines (52 loc) · 2.08 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>course registration</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="limiter">
<div class="container-login100" style="background-image: url('images/Ph.D.-in-the-Uttarakhand-Technical-University.png');">
<div class="wrap-login100">
<form class="login100-form validate-form" action="course_registration.php" method="post">
<!-- <span class="login100-form-logo">
<i class="zmdi zmdi-landscape"></i>
</span> -->
<span class="login100-form-title p-b-34 p-t-27">
Register
</span>
<div class="wrap-input100 validate-input">
<input class="input100" name="branch_code" placeholder=" Branch Code">
<span class="focus-input100" ></span>
</div>
<div class="wrap-input100 validate-input">
<input class="input100" name="subject_id" placeholder="Subject Id">
<span class="focus-input100" ></span>
</div>
<div class="wrap-input100 validate-input">
<input class="input100" name="subject_name" placeholder="Subject Name">
<span class="focus-input100" ></span>
</div>
<div class="wrap-input100 validate-input">
<input class="input100" name="id" placeholder="Teacher Id">
<span class="focus-input100" ></span>
</div>
<div class="container-login100-form-btn">
<button class="login100-form-btn">
Register
</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>