-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
158 lines (148 loc) · 5.18 KB
/
Copy pathform.html
File metadata and controls
158 lines (148 loc) · 5.18 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add a pet</title>
<link rel="stylesheet" href="./styles/form.css">
</head>
<body>
<div class="navbar">
<div class="navbar-content">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="left-arrow">
<path stroke-linecap="round" stroke-linejoin="round" d="M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18" /></svg>
<p>Add New Pet</p>
</div>
</div>
<div class="form-container">
<form>
<section>
<h3>Pet Photos</h3>
<p class="subtitle">Add up to 5 photos of your pet</p>
<div class="upload-box">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" width="24">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0 4.5 4.5M12 3v13.5" />
</svg>
</div>
</section>
<section>
<h3>Basic Information</h3>
<div class="grid-row">
<div class="input-group">
<label>Pet Name *</label>
<input type="text" placeholder="Enter pet name">
</div>
<div class="input-group">
<label>Species *</label>
<select>
<option>Select species</option>
<option>Dog</option>
<option>Cat</option>
</select>
</div>
</div>
<div class="grid-row">
<div class="input-group">
<label>Breed</label>
<input type="text" placeholder="Enter breed">
</div>
<div class="input-group">
<label>Age *</label>
<input type="text" placeholder="e.g., 2 years">
</div>
</div>
<div class="grid-row">
<div class="input-group">
<label>Gender *</label>
<div class="radio-group-inline">
<label><input type="radio" name="gender" checked> Male</label>
<label><input type="radio" name="gender"> Female</label>
</div>
</div>
<div class="input-group">
<label>Color</label>
<input type="text" placeholder="Enter color">
</div>
</div>
</section>
<section>
<h3>Listing Type *</h3>
<div class="listing-options">
<label class="listing-card active">
<input type="radio" name="listing" checked>
<div class="card-text">
<strong>For Adoption</strong>
<span>Find a forever home</span>
</div>
</label>
<label class="listing-card">
<input type="radio" name="listing">
<div class="card-text">
<strong>Temporary Care</strong>
<span>Need someone to look after</span>
</div>
</label>
</div>
</section>
<section>
<h3>Health Information</h3>
<div class="checkbox-grid">
<label class="custom-checkbox">
<input type="checkbox"> <span class="checkmark"></span> Vaccinated
</label>
<label class="custom-checkbox">
<input type="checkbox"> <span class="checkmark"></span> Neutered/Spayed
</label>
<label class="custom-checkbox">
<input type="checkbox"> <span class="checkmark"></span> Microchipped
</label>
<label class="custom-checkbox">
<input type="checkbox"> <span class="checkmark"></span> Dewormed
</label>
</div>
</section>
<section>
<div class="input-group">
<label>Description *</label>
<textarea placeholder="Tell us about your pet's personality, habits, and what makes them special..."></textarea>
</div>
</section>
<section>
<h3>Location</h3>
<div class="grid-row">
<div class="input-group">
<label>City *</label>
<input type="text" placeholder="Enter city">
</div>
<div class="input-group">
<label>State/Province</label>
<input type="text" placeholder="Enter state">
</div>
</div>
</section>
<section>
<h3>Contact Information</h3>
<div class="grid-row">
<div class="input-group">
<label>Your Name *</label>
<input type="text" placeholder="Enter your name">
</div>
<div class="input-group">
<label>Phone Number *</label>
<input type="text" placeholder="Enter phone number">
</div>
</div>
<div class="input-group full-width">
<label>Email</label>
<input type="email" placeholder="Enter email address">
</div>
</section>
<div class="form-actions">
<button type="button" class="btn-cancel">Cancel</button>
<button type="submit" class="btn-submit">Submit Listing</button>
</div>
</form>
</div>
<script src="./scripts/form.js"></script>
</body>
</html>