-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
56 lines (55 loc) · 2.58 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="form.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
<title>page 2</title>
</head>
<body>
<div class="Container">
<form action="" method="post">
<div class="content">
<div class="input-box">
<label for="fname">First Name</label>
<input type="text" placeholder= "👤 Enter First Name" name="fname" required>
</div>
<div class="input-box">
<label for="lname">Last Name</label>
<input type="text" placeholder="👤 Enter Last Name" name="lname" required>
</div>
<div class="input-box">
<label for="phone">Phone</label>
<input type="tel" placeholder="☎ Enter Contact Number" name="phone" required>
</div>
<div class="input-box">
<label for="email">Email Address</label>
<input type="email" placeholder="✉️ Enter your valid email address" name="email" required>
</div>
<div class="input-box">
<label for="shname">Shop Name</label>
<input type="text" placeholder="🛒 Enter Shop Name" name="shname" required>
</div>
<div class="input-box">
<label for="sh-address">Shop Address</label>
<input type="text" placeholder="📍 Enter Shop Address" name="sh-address" required>
</div>
<div class="input-box">
<label for="password">Password</label>
<input type="password" placeholder="🔒 Enter new password" name="password" required>
</div>
<div class="input-box">
<label for="confirm-password">Confirm Password</label>
<input type="password" placeholder="🔒 Confirm your password" name="confirm-password" required>
</div>
</div>
<div class="button-container">
<button type="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>