-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignup.html
53 lines (52 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>newsleter</title>
<link rel="stylesheet" href="./Css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/brands.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/regular.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/solid.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/svg-with-js.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/v4-font-face.min.css">
</head>
<body>
<nav>
<li><a href="./index.html">Home</a></li>
<li><a href="./Logn.html">Log-In</a></li>
</nav>
<form action="" class="form">
<center>
<img src="../image/Pasted image 1.png" alt="">
</center>
<div class="groupe">
<label for="firstName">FirstName</label>
<input type="firstName" name="firstName" id="firstName">
</div>
<div class="groupe">
<label for="lastName">LastName</label>
<input type="lastName" name="lastName" id="lastName">
</div>
<div class="groupe">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="groupe icon-postion">
<label for="password">Password</label>
<input type="password" name="password" id="password"/>
<i class="fa-solid fa-eye-slash" style="color: #465672," id="#togglepassword"></i>
</div>
<div class="groupe">
<label for="confrimpassword">Confrimpassword</label>
<input type="confrimpassword" name="confrimpassword" id="confrimpassword">
</div>
<center>
<input type="submit" value="Sign-Up" id="button">
</center>
</form>
<script src="./Js/signup.js"></script>
</body>
</html>