-
Notifications
You must be signed in to change notification settings - Fork 1
/
secondary.html
29 lines (28 loc) · 1.09 KB
/
secondary.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
<!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>Document</title>
<link rel="stylesheet" href="secondary.css">
</head>
<body>
<img id="logo" src="images/edge.png" alt="EDGE">
<h1>Welcome To EDGE</h1>
<h2>Login to Continue</h2>
<form>
<div class="container1">
<label>Username:</label>
<input type="text" placeholder="Enter Your Username" name="username" required>
<br><label>Password:</label>
<input type="password" placeholder="Enter Login Password" id="showpass" name="password" required>
<label><input type="checkbox" onclick="Show()">Show Password</label>
<label><input type="checkbox" checked="checked">Remember Me</label>
<button type="submit" id="sub">LOGIN</button>
<button type="button" class="cancelbtn" id="cancel">CANCEL</button><br>
</div>
<script src="secondary.js"></script>
</form>
</body>
</html>