-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignIn.html
36 lines (33 loc) · 1.55 KB
/
SignIn.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bazzar Banddhu Login</title>
<link rel="stylesheet" href="Signin.css"> <!-- link to your stylesheet -->
<!-- <script>
alert("You are succesfully registered!")
</script> -->
</head>
<body>
<div class="container">
<div class="login-form">
<div class="logo-container">
<img src="loginlogo.png" alt="Bazzar Bandhu Logo">
<h2>Bazzar Banddhu</h2>
</div>
<form action="https://formsubmit.co/[email protected]" method="POST" />
<!-- <input type="hidden" name="access_key" value="4351a384-b3b8-47dd-9925-c5cf26e2895c"> -->
<label for="username">UserName:</label>
<input type="text" id="username" placeholder="Enter Username" name="username" required><b><span class="contact-input"> </span></b><br><br>
<label for="password">Password:</label>
<input type="password" id="password" placeholder="Enter Password" name="password" required><b><span class="contact-input"></span></b><br><br>
<!-- <link rel="stylesheet" href=""> -->
<label for="Forgot Password?"><a href="#">Forgot Password?</a></label>
<input type="submit" value="Login">
</form>
<p>Don't have an account? <a href="SignUp.html">SignUp</a></p>
</div>
</div>
</body>
</html>