-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 874 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<script src="https://kit.fontawesome.com/4134f1193b.js" crossorigin="anonymous"></script>
<title>IEEE SSIT Login Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="logo">
<img src="logo.png" alt="" height="270" width="310" />
</div>
<div class="container">
<h1>Log in here</h1>
<div class="box">
<i class="fa fa-user"></i>
<input type="text" name="" placeholder="Username">
</div>
<div class="box">
<i class="fa fa-key"></i>
<input type="password" name="password" id="password" placeholder="Password">
</div>
<button class="btn">Sign In</button>
</div>
<div class="footer">
<h1>IEEE SSIT <span class="fieldStyle">Software</span> Portal</h1>
</div>
</body>
</html>