-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
35 lines (34 loc) · 1.53 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./main.css"/>
<script type="text/javascript" src="./main.js"></script>
<title>Simple Responsive Login</title>
</head>
<body>
<div class="main-content">
<form class="main-form" onsubmit="return confirm('Do you really want to submit the form?');">
<h1 class="heading">Login to Cyber World</h1>
<div class="login-inputs">
<div class="input-wrapper">
<label for="name">User Name</label>
<input type="text" name="name" placeholder="Enter your username" class="custom-input"/>
</div>
<div class="input-wrapper">
<label for="password">Password</label>
<input type="password" name="password" placeholder="Enter your password" class="custom-input"/>
<i class="fa fa-eye-slash" ></i>
</div>
</div>
<button type="submit">Sign In</button>
<div class="signup-text">Don't have an account yet ? <a>Sign up</a>
now
</div>
</form>
</div>
</body>
</html>