-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
72 lines (72 loc) · 2.53 KB
/
signup.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
<html>
<head>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="materialize/css/materialize.min.css" media="screen,projection"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>MediCare</title>
</head>
<body class="amber lighten-5">
<nav class="cyan lighten-3">
<div class="nav-wrapper">
<a href="introductory.html" class="brand-logo center-align"><strong>MediCare+</strong></a>
</div>
</nav>
<div class="container">
<div class="col s8 offset-s4">
<div class="container">
<h3 class="cyan-text">Sign Up</h3>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input 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="email" type="email" class="validate">
<label for="email">Email</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="password" type="password" class="validate">
<label for="password">Password</label>
</div>
</div>
</form>
</div>
<button class="btn waves-effect waves-light cyan lighten-3" type="submit" name="action">Submit
<i class="material-icons right">send</i>
</button>
</div>
</div>
</div>
<footer class="page-footer cyan lighten-3">
<div class="container">
<div class="center">
<div class="row">
<h6 class="white-text">Follow us:</h6>
<a href="#!"><img height="60px" width="60px" src="footer_icon\google_plus.png" /></a>
<a href="https://www.facebook.com/www.avekare.co.in/?fref=ts"><img height="60px" width="60px" src="footer_icon\facebook.png" /></a>
<a href=""><img height="60px" width="60px" src="footer_icon\twitter.png" /></a>
<a href="https://avekarecoin.wordpress.com/"><img height="60px" width="60px" src="footer_icon\wordpress.png" /></a>
</div>
</div>
</div>
<div class="footer-copyright cyan lighten-2">
<div class="container">
©2017 MediCare+, All rights reserved.
</div>
</div>
</footer>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="materialize/js/materialize.min.js"></script>
</body>
</html>