-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.html
123 lines (111 loc) · 5.41 KB
/
student.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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>Student Login</title>
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="login-form.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<div id="header" class="container">
<div id="logo">
<img src="images/logo.png" style="height: 80px; width: 85px; border-radius:50%;">
</div>
<div id="menu">
<ul>
<li class="active"><a href="index.html" accesskey="1" title="">Home</a></li>
<li><a href="#" accesskey="2" title="" style="color: black;">About Us</a></li>
<li><a href="#" accesskey="3" title="" style="color: black;">Departments</a></li>
<li><a href=" #" accesskey="4" title="" style="color: black;">Admission</a></li>
<li><a href=" #" accesskey="5" title="" style="color: black;">Research</a></li>
</ul>
</div>
</div>
<!-- LOGIN FORM -->
<div class=" flex-r container-form">
<div class="flex-r login-wrapper">
<div class="login-text">
<div>
<span>IGDTUW</span>
</div>
<h1>Student Login</h1>
<p>Login as Student in the official portal of IGDTUW. </p>
<form class="flex-c">
<div class="input-box">
<span class="label">Name</span>
<div class=" flex-r input">
<input type="text" id="name" placeholder="Enter your name.">
<i class="fas fa-at"></i>
</div>
</div>
<div class="input-box">
<span class="label">Password</span>
<div class="flex-r input">
<input type="password" placeholder="8+ (a, A, 1, #)">
<i class="fas fa-lock"></i>
</div>
</div>
<div class="check">
<input type="checkbox" name="" id="">
<span>I've read and agree with T&C</span>
</div>
<input class="btn" type="submit" value="Login" id="loginbutton">
<span class="extra-line">
<span>Are you not registered?</span>
<a href="#">Register Here</a>
</span>
</form>
</div>
</div>
</div>
<div class=" footer-dark">
<footer>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3 item">
<h3>Useful Links</h3>
<ul>
<li><a href="#">NPTEL</a></li>
<li><a href="#">Swayam</a></li>
<li><a href="#">Information Under Contract Labour Act</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 item">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Anvenshan Foundation (Business Incubator)</a></li>
<li><a href="#">NIRF Data</a></li>
<li><a href="https://igdtuw.in/IGDTUW/login">ERP Portal</a></li>
</ul>
</div>
<div class="col-md-6 item text">
<h3>Contacts</h3>
<ul>
<li><a href="#">Indira Gandhi Delhi Technical University For Women</a></li>
<li><a href="#">Madrasa Road
Opposite St. James Church
Kashmere Gate
Delhi-110006</a></li>
<li><a href="#">Telephone: 011- 23900261, 23900264</a></li>
</ul>
</div>
<div class="col item social"><a href="#"><i class="icon ion-social-facebook"></i></a><a href="#"><i
class="icon ion-social-twitter"></i></a><a href="#"><i
class="icon ion-social-snapchat"></i></a><a href="#"><i
class="icon ion-social-instagram"></i></a></div>
</div>
<p class="copyright">IGDTUW © 2022</p>
</div>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
<script src="main.js"></script>
</body>
</html>