forked from dixonsimon/NammaRation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocation.html
More file actions
72 lines (64 loc) · 2.95 KB
/
Copy pathlocation.html
File metadata and controls
72 lines (64 loc) · 2.95 KB
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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" type="image/png" href="images/logo.jpg"/>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/responsive.css">
<title>Namma Ration - Location</title>
</head>
<body>
<header>
<div class="nav-container">
<div class="logo">
<img src="images/logo-transperant.png" alt="Namma Ration Logo">
<h1>Namma Ration</h1>
</div>
<div class="nav-links">
<a href="home.html"><i class="fas fa-home"></i> Home</a>
<a href="cart.html"><i class="fas fa-shopping-cart"></i> Cart <span id="cart-count" class="cart-count"></span></a>
<a href="location.html" class="active"><i class="fas fa-map-marker-alt"></i> Location</a>
<a href="profile.html"><i class="fas fa-user"></i> Profile</a>
</div>
</div>
</header>
<div class="search-container">
<div class="search-bar">
<input type="text" placeholder="Search for products, categories, or offers...">
<div class="search-icon">
<i class="fas fa-search"></i>
</div>
</div>
</div>
<main>
<h1 class="page-title">Location Details</h1>
<div class="form-container">
<form class="location-form" id="location-form">
<div class="form-group">
<label for="pincode"><i class="fas fa-map-pin"></i> PIN Code</label>
<input type="text" id="pincode" name="pincode" class="form-control" placeholder="Enter your 6-digit PIN code" required>
</div>
<div class="form-group">
<label for="address"><i class="fas fa-address-card"></i> Delivery Address</label>
<textarea id="address" name="address" class="form-control" placeholder="Enter your complete delivery address" required></textarea>
</div>
<div class="form-group">
<label for="phone"><i class="fas fa-phone"></i> Receiver's Phone Number</label>
<input type="tel" id="phone" name="phone" class="form-control" placeholder="Enter receiver's 10-digit phone number" required>
</div>
</form>
</div>
<div class="btn-container">
<button type="submit" form="location-form" class="btn">
<i class="fas fa-arrow-right"></i> Proceed to Payment
</button>
</div>
</main>
<footer>
<p>© 2025 Namma Ration. All rights reserved.</p>
</footer>
<script src="scripts/script.js"></script>
</body>
</html>