-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathcreate-password.html
37 lines (33 loc) · 1.23 KB
/
create-password.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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Create Password</title>
<link rel="stylesheet" href="styles/create-password.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="" class="navbar-brand"><img
src="https://res.cloudinary.com/sgnolebagabriel/image/upload/v1570531368/Lancers_evgrmc.png"
alt="logo"></a>
</header>
<div class="form">
<h4>Create Password</h4>
<p>Create a password to get access to all the goodies that we have to offer</p>
<form action="">
<div class="fields">
<label for="password">Password</label>
<input type="password" name="password">
</div>
<div class="fields">
<label for="password_confirmation">Password Confirmation</label>
<input type="password" name="password_confirmation">
</div>
<input type="submit" value="Create Password">
</form>
</div>
</body>
</html>