-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.html
133 lines (125 loc) · 6.33 KB
/
form.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!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">
<link rel="stylesheet" href="./styles.css">
<title>Form</title>
</head>
<body>
<header>
<div class="logo">
<button id="burger">☰</button>
<a href="Home.html"><img src="Assets/yamada.svg" alt="logo"/></a>
</div>
<div class="navigation-bar" id="navigation-bar">
<ul class="navigation-list">
<li><a href="Home.html" class="navigation-item">Home</a></li>
<li><a href="Pets.html" class="navigation-item navigation-item-active">Adopt a Pet</a></li>
<li class="navigation-item dropdown">
<a class="navigation-link dropdown-toggle disabled-link" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Community Hub
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="Articles.html">Articles</a>
<a class="dropdown-item" href="Forum.html">Forum</a>
</div>
</li>
<li><a href="Events.html" class="navigation-item">Events</a></li>
<li><a href="Register.html" class="navigation-item">Register</a></li>
<li><a href="Login.html" class="navigation-item">Login</a></li>
</ul>
</div>
</header>
<main class="form-adopet">
<img src = "Assets/personal-data.svg" alt = "Logo">
<div class="form-inputs">
<form name="FormAdopet" class="form-data" id="FormAdopet" action="./form2.html">
<h1>Personal Data</h1>
<p>Please input the correct data/information within this form</p><br>
<!-- First Name -->
<label for = "first-name"> First-Name*</label>
<input type="text" class="input-field" id="first-name" name="first-name"><br>
<!-- Last Name -->
<label for = "last-name"> Last-Name*</label><br>
<input type="text" class="input-field" id="last-name" name="last-name"><br>
<!-- Gender Radio Button -->
<label for="gender">Gender: </label><br>
<input type="radio" id="male" name="gender" value="male" class="gender-male">
<label for="male" class="gender-label-male">Male</label>
<input type="radio" id="female" name="gender" value="female"class="gender-female">
<label for="female">Female</label><br>
<!-- Place of Birth -->
<label for = "place-of-birth"> Place Of Birth*</label>
<input type = "text" class="input-field" id="place-of-birth" name="place-of-birth">
<!-- Age -->
<label for = "age">Age*</label>
<input type= "text" class="input-field" id="age" name="age">
<!-- No. EKTP -->
<label for = "KTP">No. E-KTP*</label><br>
<input type= "text" class="input-field" id="KTP" name="KTP"><br>
<!-- Occupation -->
<label for = "Occupation">Occupation*</label><br>
<select id="drop-down-list" name="Occupation" onchange="showModelInput()">
<option value="College Student">College Student</option>
<option value="Worker">Worker</option>
<option value="Other">Other</option>
</select>
<div id="model-input-container"></div>
<!-- Submit Button -->
<input type="submit" name="next" value="Next" class="next-button">
</form>
</div>
</main>
<footer>
<div class="headfoot-clear">
<div>
<div><h2><a href="Home.html"><img src="Assets/yamada.svg" alt="logo"/></a></h2></div>
<div>
<ul class="navigation-list-footer">
<li><a href="Pets.html" class="navigation-item">Pets</a></li>
<li><a href="Events.html" class="navigation-item">Events</a></li>
<li><a href="Articles.html" class="navigation-item">Articles</a></li>
<li><a href="Forum.html" class="navigation-item">Forum</a></li>
</ul>
</div>
</div>
<div>
<div><h2>Explore</h2></div>
<div>
<ul class="navigation-list-footer">
<li><a>Partners</a></li>
<li><a>Shelters</a></li>
<li><a>Reviews</a></li>
<li><a>Ambassadors</a></li>
</ul>
</div>
</div>
<div>
<div>
<ul class="navigation-list-footer">
<li><a class="event-banner-link" href="TermsNCondition.html">Terms & Conditions</a></li>
<li><a>Privacy & Policy</a></li>
</ul>
</div>
</div>
<div>
<div class="footer-title"><h2>Social networks</h2></div>
<div class="social-media">
<div class="social-media-link">
<a href="https://www.facebook.com/"><img src="Assets/facebook.svg" alt="facebook" class="social-media"/></a>
</div>
<div class="social-media-link">
<a href="https://www.instagram.com/"><img src="Assets/instagram.svg" alt="instagram" class="social-media"/></a>
</div>
<div class="social-media-link">
<a href="https://www.twitter.com/"><img src="Assets/twitter.svg" alt="twitter" class="social-media"/></a>
</div>
</div>
</div>
</div>
</footer>
</body>
<script src="./scripts.js"></script>
</html>