-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
88 lines (73 loc) · 3.77 KB
/
registration.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
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="reg.css">
</head>
<body>
<nav>
<div class="logo">Fit mania </div>
<ul>
<li><a href="index.html"> Home</a></li>
<li><a href="list.html" target="main">Program</a></li>
<li><a href="nutrition list.html" target="main">Nutrition</a></li>
<li><a href="tool.html" target="main">Tool</a></li>
<li><a href="about.html" target="main">About us </a></li>
<li><a href="registration.html" target="main"> Login / Register</a></li>
</ul>
</nav>
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" id="email" >
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" id="psw" >
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" id="psw-repeat" >
<hr>
<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<button type="submit" class="registerbtn">Register</button>
</div>
<div class="container signin">
<p>Already have an account? <a href="login.html">Sign in</a>.</p>
</div>
</form>
<footer>
<div class="footer_container">
<div class="footer">
<div class="footer_heading footer-1">
<h2> Home </h2>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\PROGRAM\list.html"target="main">Program</a>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\nutrition\nutrition list.html">Nutrition</a>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\tools\tool.html">Tools</a>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\about us\about.html">About us </a>
</div>
<div class="footer_heading footer-1">
<h2> Tools </h2>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\tools\bmi\bmi.html" target="main">BMI calculator </a>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\tools\Body_fat\body_fat.html" target="main">B fat calculator</a>
<a href="C:\Users\imran\OneDrive\Desktop\collage project\main file\tools\Calories_burned\calories.html" target="main">Activity calories burn</a>
<a href=" C:\Users\imran\OneDrive\Desktop\collage project\main file\tools\Recipe_nutrition\nutrition.html" target="main"> Nutrition Calculator </a>
</div>
<div class="footer_heading footer-1">
<h2> Contact Us </h2>
<a href="https://www.instagram.com/hunk__imran_?utm_source=ig_web_button_share_sheet&igsh=ZDNlZDc0MzIxNw==" target="main"> instagram </a>
<a href="https://www.facebook.com/profile.php?id=100055357926916&mibextid=LQQJ4d" target="main"> Facebook </a>
<a href="https://www.linkedin.com/in/imran-ahemad-539493301?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app"target="main">linkedin</a>
</div>
<div class="footer-email-form">
<h2>Join Our NewsLetter</h2>
<input type="email" placeholder="Enter your Email address"
id="footer-email">
<input type="submit" value="Sign up"
id="footer-email-btn">
</div>
</div>
</div>
</footer>
</body>
</html>