-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbecomeHost.html
52 lines (51 loc) · 1.83 KB
/
becomeHost.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
<!DOCTYPE html>
<html>
<head>
<title>application</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- navigation bar -->
<nav style="background: #9c27b0;">
<div class="nav-wrapper">
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="becomeHost.html">Become a Host</a></li>
<li><a href="badges.html">Sign Up</a></li>
<li><a href="collapsible.html">Login</a></li>
</ul>
</div>
</nav>
<!-- input feilds -->
<div class="row">
<form class="col s8" style="margin-left: 16%; margin-top: 5%;">
<h5>Become a Host</h5>
<div class="row">
<div class="input-field col s6">
<input placeholder="First Name" id="first_name" type="text" class="validate">
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<input 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="password" type="password" class="validate">
<label for="password">Address</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="password" type="password" class="validate">
<label for="password">NIC</label>
</div>
</div>
</form>
</div>
</body>
</html>