forked from amitmaindola/KrishiMitra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUpMerchant.html
55 lines (51 loc) · 2.82 KB
/
SignUpMerchant.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
<!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>SignUp | KrishiMitra</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="./login.css">
</head>
<body>
<div class="bg"></div>
<div class="login-page">
<div class="container">
<div class="intro">
<h1 class="name">
कृषिमित्र
</h1>
<div class="about">
<p id="text"></p>
<p id="span">_</p>
</div>
</div>
<div class="form">
<div class="envelop">
<form class="login-form" action="./signup-merchant.php" method="POST">
<input class="email form-control" type="text" placeholder="First Name" name="fname">
<input class="email form-control" type="text" placeholder="Last Name" name="lname">
<input class="email form-control" type="text" placeholder="Email or Phone Number" name="phone">
<input class="email form-control" type="text" placeholder="Pincode" name="pincode">
<input class="email form-control" type="text" placeholder="Address" name="address">
<input class="email form-control" type="text" placeholder="City" name="city">
<input class="password form-control" type="password" placeholder="Password" name="password">
<input class="password form-control" type="password" placeholder="Confirm Password">
<input type="hidden" name="hidden" value="merchant">
<button type="submit" class="btn btn-primary btn-signin">Sign Up</button>
<hr>
<a href="">Already have account?</a>
</form>
<form>
<a href="./LoginMerchant.html"><button type="button" class="btn btn-danger btn-signup">Sign In</button></a>
</form>
</div>
</div>
</div>
</div>
<script src="./index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>