-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUp.html
58 lines (57 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign Up</title>
<link rel="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="styleinst.css">
<style>@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');
</style>
</head>
<body>
<header>
<div class="nav-hero">
<div class="logo">
<img src="assets/logo.png" alt="GoYoga Logo">
<h1>GoYoga</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<div class="form-body">
<form action="ishacam.html" method="post" class="form">
<input type="text" name="username" placeholder="Username" required />
<input type="text" name="fullname" placeholder="Full Name" required />
<input type="number" name="age" placeholder="Age" required />
<input
type="text"
name="gender"
placeholder="Gender(Male/ Female/ Trans gender/ Prefer not to say)"
required
/>
<input
type="number"
name="weight"
placeholder="Weight (in kg)"
required
/>
<input type="password" name="password" placeholder="Password" required />
<input type="submit" value="Sign Up" />
<div class="links">
Already have an account? <a href="login.html">Log In here!</a>
</div>
</form>
</div>
<footer>
<p> 2024 GoYoga - Embrace the Journey, Embrace the Yoga Lifestyle.</p>
</footer>
</body>
</html>