-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupplement-store.html
More file actions
88 lines (74 loc) · 1.95 KB
/
Copy pathsupplement-store.html
File metadata and controls
88 lines (74 loc) · 1.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Supplement Store - Gym Admin</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f0f2f5;
margin: 0;
padding: 20px;
}
.container {
max-width: 700px;
margin: auto;
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
color: #20bf6b;
margin-bottom: 25px;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-top: 15px;
font-weight: bold;
}
input, textarea, select {
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
resize: vertical;
}
button {
margin-top: 25px;
padding: 12px;
border: none;
border-radius: 5px;
background-color: #20bf6b;
color: white;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background-color: #119c54;
}
</style>
</head>
<body>
<div class="container">
<h2>Supplement Inventory Form</h2>
<form action="https://formspree.io/f/mblkarkg" method="POST">
<label for="name">Supplement Name</label>
<input type="text" name="Supplement Name" id="name" required>
<label for="type">Type</label>
<input type="text" name="Type" id="type" placeholder="Protein, Creatine, etc." required>
<label for="quantity">Quantity in Stock</label>
<input type="number" name="Quantity" id="quantity" required>
<label for="price">Price (₹)</label>
<input type="number" name="Price" id="price" required>
<label for="notes">Notes</label>
<textarea name="Notes" id="notes" rows="4" placeholder="Optional"></textarea>
<button type="submit">Add to Inventory</button>
</form>
</div>
</body>
</html>