forked from akshitagupta15june/PetMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreportstary.html
117 lines (107 loc) · 4.59 KB
/
reportstary.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
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
<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">
<link rel="stylesheet" href="./reportstary.css">
<title>Report Critical stray animal</title>
</head>
<body>
<nav class=" bg-gray-800 flex items-center justify-between md:h-16 md:px-2">
<div class=" nav-links md:w-3/5">
<ul class=" flex items-center justify-evenly text-white ">
<br>
<a class="hover:border-b-2 hover:border-solid hover:border-white" href="index.html"><b>Home</b></a>
</ul>
</div>
</nav>
<div class="container">
<header>
<h1 id="title">Report any Critical stray animal to the nearest Animal Care centres</h1>
<p id="description">The details you provide with this form will be used to reach the nearest authority at the location of the stray animal.</p>
</header>
<form id="survey-form" action="https://formspree.io/f/xayaokzl" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input
type="text"
name="name"
id="name"
class="form-control"
placeholder="Enter your name"
required
/>
</div>
<div class="form-group">
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
class="form-control"
placeholder="Enter your email"
required
/>
</div>
<div class="form-group">
<label for="address">
Address(street address,City, pincode)
<span class="hint">(optional)</span>
</label>
<input
type="address"
name="first address"
id="first address"
class="form-control"
placeholder="Enter your correct address (eg. Meenawati marg, Lucknow, 209087)" />
</div>
<div class="form-group">
<label for="landmark">
Landmark
<span class="hint">(optional)</span>
</label>
<input
type="address"
min="1"
name="address"
id="address"
class="form-control"
placeholder="Enter the nearest landmark to identify the location." />
</div>
<div class="form-group">
<label for="email">Which type of stray animal?</label>
<select id="dropdown" name="role" class="form-control" required>
<option disabled selected value>Select stray animal</option>
<option value="student">Dog</option>
<option value="artist">Cat</option>
<option value="graphic_designer">Cow</option>
<option value="other">Pig</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<p>What is the condition of the animal currently?</p>
<label>
<input name="user-recommend" value="definitely" type="radio" class="input-radio" checked />
Extremely Critical
</label>
<label>
<input name="user-recommend" value="maybe" type="radio" class="input-radio" />
Critical
</label>
<label>
<input name="user-recommend" value="no" type="radio" class="input-radio" />
Moderate health
</label>
</div>
<div class="form-group">
<label for="comment">Would you like to share any additional information about the stray animal's condition?</label>
<textarea id="comment" class="input-textarea" name="comment" placeholder="Enter your comment here..."></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit" class="submit-button">Submit</button>
</div>
</form>
</div>
</body>
</html>