-
Notifications
You must be signed in to change notification settings - Fork 1
/
loginindex.html
87 lines (60 loc) · 3.14 KB
/
loginindex.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
<!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>Login</title>
<link rel="stylesheet" href="loginstyle.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css" />
</head>
<body>
<div class="container">
<div class="regform">
<form action="reg.php" method="post">
<p class="logo">Food <b style="color: #06C167;">Donate</b></p>
<p id="heading">Create your account</p>
<div class="input">
<label class="textlabel" for="name">User name</label><br>
<input type="text" id="name" name="name">
</div>
<div class="input">
<label class="textlabel" for="email">Email</label>
<input type="email" id="email" name="email">
<!-- <label class="textlabel" for="phoneno">Phone no</label>
<input type="text" id="phoneno" name="phoneno" > -->
<!-- <label class="textlabel" for="password">Password</label>
<input type="password" id="password" name="password" > -->
</div>
<label class="textlabel" for="password">Password</label>
<div class="password">
<input type="password" name="password" id="password">
<!-- <i class="fa fa-eye-slash" aria-hidden="true" id="showpassword"></i> -->
<i class="bi bi-eye-slash" id="showpassword"></i>
</div>
<div class="radio">
<input type="radio" name="gender" id="male" value="male">
<label for="male" >Male</label>
<input type="radio" name="gender" id="female" value="female">
<label for="female" >Female</label>
</div>
<div class="btn">
<button type="submit" name="sign">Continue</button>
</div>
<!-- <button type="submit" style="background-color:white ;color: #000; margin-top:5px; padding: 10px 25px;">
<img src="google.svg" style="width:22px" >
Continue With Google </button> -->
<div class="signin-up">
<p style="font-size: 20px; text-align: center;">Already have an account? <a href="signin.html"> Sign in</a></p>
</div>
</form>
</div>
<!-- <div class="right">
<img src="cover.jpg" alt="" width="800" height="700">
</div> -->
</div>
<script src="login.js"></script>
</body>
</html>