-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (42 loc) · 1.99 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Portal</title>
</head>
<body>
<img src="pu.jpg" class="bImage">
<div class="background_area"></div>
<div class="center_content">
<div class="row">
<div class="col-lg-6 pu-logo">
<center>
<img src="pu-logodark.png" class="pu-logo-img" alt="PU logo">
<p class="phd"><h2>Ph.D Admissions</h2></p>
</center>
</div>
<div class="card col-lg-6">
<center>
<div class="heading">Student Portal </div>
<!-- <h3 class="card-subtitle">Sign In</h3> -->
<form id="signin" action="#">
<input type="text" id="userID" name="userID" placeholder="Enter User ID" class="input_text_line"></input> <br>
<input type="password" id="password" name="password" placeholder="Password" required onautocomplete="off" class="input_text_line"> <br>
<button class="login-button" onclick="signIn()">LOG IN</button>
<div class="contact100-form-checkbox m-l-4">
<input class="input-checkbox100" id="ckb1" type="checkbox" name="remember-me">
<label class="label-checkbox100" for="ckb1">
Remember me
</label>
</div>
</form>
<p class="register">Don't have an account <a href="#" class="font-bold register_button" onclick="loadSignUp()"> <u> Register</u></a></p>
</center>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>