-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign.html
More file actions
92 lines (89 loc) · 4.2 KB
/
Copy pathSign.html
File metadata and controls
92 lines (89 loc) · 4.2 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
<!DOCTYPE html>
<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">
<title>Document</title>
<link rel="stylesheet" href="/assets/css/sign.css">
</head>
<body>
<div class='signup-container'>
<div class='left-container'>
<h1>
<i class='fas fa-paw'></i>
Hero Pets
</h1>
<div class='puppy'>
<img src='https://s3-us-west-2.amazonaws.com/s.cdpn.io/38816/image-from-rawpixel-id-542207-jpeg.png'>
</div>
</div>
<div class='right-container'>
<header>
<h1>Yay, puppies! Ensure your pup gets the best care!</h1>
<div class='set'>
<div class='pets-name'>
<label for='pets-name'>Nombre</label>
<input id='pets-name' placeholder="Nombre de tu mascota" type='text'>
</div>
<div class='pets-photo'>
<button id='pets-upload'>
<i class='fas fa-camera-retro'></i>
</button>
<label for='pets-upload'>Upload a photo</label>
</div>
</div>
<div class='set'>
<div class='pets-breed'>
<label for='pets-breed'>Breed</label>
<input id='pets-breed' placeholder="Pet's breed" type='text'>
</div>
<div class='pets-birthday'>
<label for='pets-birthday'>Birthday</label>
<input id='pets-birthday' placeholder='MM/DD/YYYY' type='text'>
</div>
</div>
<div class='set'>
<div class='pets-gender'>
<label for='pet-gender-female'>Gender</label>
<div class='radio-container'>
<input checked='' id='pet-gender-female' name='pet-gender' type='radio' value='female'>
<label for='pet-gender-female'>Female</label>
<input id='pet-gender-male' name='pet-gender' type='radio' value='male'>
<label for='pet-gender-male'>Male</label>
</div>
</div>
<div class='pets-spayed-neutered'>
<label for='pet-spayed'>Spayed or Neutered</label>
<div class='radio-container'>
<input checked='' id='pet-spayed' name='spayed-neutered' type='radio' value='spayed'>
<label for='pet-spayed'>Spayed</label>
<input id='pet-neutered' name='spayed-neutered' type='radio' value='neutered'>
<label for='pet-neutered'>Neutered</label>
</div>
</div>
</div>
<div class='pets-weight'>
<label for='pet-weight-0-25'>Weight</label>
<div class='radio-container'>
<input checked='' id='pet-weight-0-25' name='pet-weight' type='radio' value='0-25'>
<label for='pet-weight-0-25'>0-25 lbs</label>
<input id='pet-weight-25-50' name='pet-weight' type='radio' value='25-50'>
<label for='pet-weight-25-50'>25-50 lbs</label>
<input id='pet-weight-50-100' name='pet-weight' type='radio' value='50-100'>
<label for='pet-weight-50-100'>50-100 lbs</label>
<input id='pet-weight-100-plus' name='pet-weight' type='radio' value='100+'>
<label for='pet-weight-100-plus'>100+ lbs</label>
</div>
</div>
</header>
<footer>
<div class='set'>
<button id='back'>Back</button>
<button id='next'>Next</button>
</div>
</footer>
</div>
</div>
</body>
</html>