Skip to content

Commit e05ce3f

Browse files
committed
Form with labels but before validation.
1 parent 77282ae commit e05ce3f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

days/005-008-html5/demos/signup/index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@
1111
<body>
1212

1313
<!-- sign up form here ... -->
14+
<h1>Sign up for FoxRem</h1>
15+
16+
<form action="" method="post">
17+
18+
<input type="text" name="full_name" placeholder=" full name">
19+
<input type="text" name="email" placeholder=" email">
20+
<input type="text" name="password" placeholder=" password">
21+
<select name="heard_of">
22+
<option value="" selected>Please select an option</option>
23+
<option value="podcast">Podcast</option>
24+
<option value="search">Search engine</option>
25+
<option value="friend">Friend's recommendation</option>
26+
</select>
27+
<button type="submit">Register</button>
28+
29+
</form>
30+
31+
1432

1533
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
1634
<script src="extras/form_hook.js"></script>

0 commit comments

Comments
 (0)