-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>ST_FE GRAPHICA</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="bg">
<br/><br/><br/>
<form>
<div class="container">
<h2 id="ByPass-Me">ByPass-Me</h2>
<br/>
<label><b>Username</b></label>
<br/><br/>
<input id="uname" type="text" placeholder="Enter Username" required>
<br/><br/><br/>
<label><b>Password</b></label>
<br/><br/>
<input id="pswd" type="password" placeholder="Enter Password" required>
<br/><br/><br/>
<input type="checkbox" checked="checked"> Remember me
<br/><br/><br/>
<button type="submit" onclick="checkPassword()">Login</button>
</div>
</form>
</div>
</body>
</html>