-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
87 lines (87 loc) · 2.55 KB
/
signup.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Signup | Create Your Account</title>
<link rel="stylesheet" href="css/signup.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<script src="https://accounts.google.com/gsi/client" async defer></script>
</head>
<body>
<div class="canvas-page">
<div class="registration-container-wrapper">
<div class="registration-container">
<img
src="assets/logos/train5d-logo-large.png"
alt="Train5D Logo"
class="logo"
width="100"
height="50"
loading="lazy"
/>
<h2>Create Your Account</h2>
<div id="g_id_signin"></div>
<form>
<div class="form-group">
<input
type="text"
class="form-control"
placeholder="First Name"
required
/>
<input
type="text"
class="form-control"
placeholder="Last Name"
required
/>
</div>
<div class="form-group">
<input
type="email"
class="form-control"
placeholder="Email"
required
/>
</div>
<div class="form-group">
<input
type="password"
class="form-control"
placeholder="Password"
required
/>
<input
type="password"
class="form-control"
placeholder="Confirm Password"
required
/>
</div>
<div class="form-group">
<input type="checkbox" id="show-password" />
<label for="show-password">Show password</label>
</div>
<button type="submit" class="btn">Register Now</button>
</form>
<div class="extra-links"></div>
</div>
<div class="info-section">
<img
src="assets/img/fitness-image.png"
alt="Info Image"
class="info-image"
width="400"
height="400"
loading="lazy"
/>
</div>
</div>
</div>
<script src="js/google-login.js" defer></script>
</body>
</html>