-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.html
91 lines (83 loc) · 2.73 KB
/
application.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
<!DOCTYPE html>
<html>
<head>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo center">Stack'd Application</a>
</div>
</nav>
<div class="container">
<div class="row">
<form class="col s12" method="post" action="form.php">
<div class="row">
<div class="input-field col s6">
<input placeholder="John" id="first_name" type="text" class="validate">
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<input placeholder="Doe" id="last_name" type="text" class="validate">
<label for="last_name">Last Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="email" type="email" class="validate">
<label for="email">Email</label>
</div>
</div>
<div class="row">
<div class="col s4">
<p>Percentage you will flake?</p>
</div>
<div class="col s8">
<p class="range-field">
<input type="range" id="test5" min="0" max="100" />
</p>
</div>
</div>
<div class="row">
<div class="file-field input-field">
<div class="btn">
<span>Resume</span>
<input type="file">
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text">
</div>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<textarea id="textarea1" class="materialize-textarea"></textarea>
<label for="textarea1">Anything else you would like to tell us?</label>
</div>
</div>
<div class="input-field col s12">
<select>
<option value="" disabled selected>Please select a gender.</option>
<option value="1">Flake</option>
<option value="2">Not a Flake</option>
<option value="3">Jason</option>
</select>
<label>Gender</label>
</div>
<button class="btn waves-effect waves-light" type="submit">Submit
<i class="material-icons right">send</i>
</button>
</form>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
<script>
$(document).ready(function() {
$('select').material_select();
});
</script>
</body>
</html>