-
Notifications
You must be signed in to change notification settings - Fork 1
/
index3.html
32 lines (30 loc) · 914 Bytes
/
index3.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Classic Login Form Example</title>
<link href="https://fonts.googleapis.com/css?family=Assistant:400,700" rel="stylesheet"><link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<section class='login' id='login'>
<div class='head'>
<h1 class='company'>AIR</h1>
</div>
<p class='msg'>Welcome back</p>
<div class='form'>
<form>
<input type="text" placeholder='Username' class='text' id='username' required><br>
<input type="password" placeholder='••••••••••••••' class='password'><br>
<a href="#" class='btn-login' id='do-login'>Login</a>
<a href="#" class='forgot'>Forgot?</a>
</form>
</div>
</section>
<footer>
<p>www.air.ac.in <span class='heart'>♥
</footer>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>