-
Notifications
You must be signed in to change notification settings - Fork 51
/
signup.html
60 lines (55 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration</title>
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="48x48" href="/images/fitnezz_favicon.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/fitnezz_favicon.png">
<link rel="icon" type="image/png" sizes="144x144" href="/images/fitnezz_favicon.png">
<link rel="icon" type="image/png" sizes="192x192" href="/images/fitnezz_favicon.png">
<link rel="icon" type="image/png" sizes="256x256" href="/images/fitnezz_favicon.png">
<link rel="icon" type="image/png" sizes="384x384" href="/images/fitnezz_favicon.png">
<link rel="icon" type="image/png" sizes="512x512" href="/images/fitnezz_favicon.png">
<link rel="stylesheet" href="/signup_style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://use.fontawesome.com/d416e09bd8.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<div class="navbar">
<div class="icon">
<img height="60" width="100" class="logo-svg" src="./images/logo.svg">
</div>
<div class="menu">
<div><a href="/index.html">HOME</a></div>
<div><a href="/about.html">ABOUT</a></div>
<div><a href="/about.html">NEWS</a></div>
<div><a href="/contact.html">CONTACT</a></div>
</div>
<div class="button search srch">
<button class="btn2 grow">Become a member</button>
</div>
</div>
<div class="form">
<center><h2 style="background-color: white;border-radius:28px; width:250px;">Sign-Up</h2></center>
<input type="text" name="Name" placeholder="Enter Name">
<input type="number" name="Phone No." placeholder="Enter Phone No.">
<input type="email" name="email" placeholder="Enter Email">
<p style="font-size:17px; color: #fff; letter-spacing: 1px; margin-top:20px ; margin-bottom: -10px; margin-left: 2px;">Gender</p>
<input style="height: 10px; display: inline-block; width: 30px; margin-right:10px; font-size: 25px; color: white;" type="radio" name="gender" value="male"> Male
<input style="height: 10px; display: inline-block; width: 30px; margin-right:10px;" type="radio" name="gender" value="female"> Female
<input style="height: 10px; display: inline-block; width: 30px; margin-right:10px;" type="radio" name="gender" value="female"> Others<br>
<input type="password" placeholder="Create Password">
<input type="password" placeholder="Re-Enter Password">
<button class="btnn"><a href="#">Login </a></button>
<p class="link">-Or-<br><br>Already have an account<br>
<a id="login-back" href="./joinin.html">Login here</a></p>
</div>
</body>
</html>