-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 851 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 851 Bytes
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>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<title>
The Secure Bank
</title>
<style>
body {
width: 100%;
min-height: 100%;
background-color: rgb(65, 64, 64);
color: #f0f0f0;
box-shadow: 0 20000px rgba(15, 15, 15, .96) inset;
}
</style>
</head>
<body>
<br>
<h1>Sign into your bank secure account today</h1><br>
<form action="index.php" method="post" enctype="multipart/form-data"><br>
<label>Username</label><br><input type="text" name="username"></text><br><br>
<label>Password</label><br><input type="text" name="password"></text><br><br>
<input type="submit" name="submit" value="Sign Into *Your* Account"><br>
<br>
</form>
<br>
</body>
</html>