-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
66 lines (57 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"/>
<link rel="stylesheet" href="contact.css" />
<title>NutriX</title>
</head>
<body>
<nav>
<div class="nav__logo">
<a href="index.html"><img src="images/logo.png" alt="logo" /></a>
</div>
<ul class="nav__links">
<li class="link"><a href="index.html">Home</a></li>
<li class="link"><a href="dietai.html">Personalized Diet</a></li>
<li class="link"><a href="#services">Services</a></li>
<li class="link"><a href="bmicalc.html">BMI Calculator</a></li>
<li class="link"><a href="contact.html">Contact Us</a></li>
</ul>
<button class="btn">Sign Up</button>
</nav>
<header class="section__container header__container">
<div class="header__content">
<span class="bg__blur"></span>
<span class="bg__blur header__blur"></span>
<div class="contact-section">
<h2>Sign Up</h2>
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="8d1a596b-271b-458e-9172-768fbd06532b">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="email">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<label for="email">Confirm Password</label>
<input type="password" id="password" name="password" required>
</div>
<h6 style="text-align: center; color: #ffffff;">Already have an Account ? <a style="text-decoration: none; color: #ffffff;" href="login.html">Login</a></h6><br>
<button type="submit">Sign Up</button>
</form>
</div>
</header>
<script src="script.js"></script>
</body>
</html>