-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
107 lines (86 loc) · 3.38 KB
/
register.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Tri-Techathlon</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
</head>
<body>
<div id="header">
<div>
<div class="logo">
<a href="index.html">TriTechathlon </a>
</div>
<ul id="navigation">
<li class="active">
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="register.html">Register</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
<h2>Click here to register!</h2>
<div class="btn"> <button onclick="document.getElementById('id01').style.display='block'" style="width:auto;">Register</button></div>
<div id="id01" class="modal">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
<form class="modal-content animate" action="/action_page.php">
<div class="container">
<label><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" required>
<input type="checkbox" checked="checked"> Remember me
<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<div class="clearfix">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Sign Up</button>
</div>
</div>
</form>
</div>
<!-- <div class="form">
<form action="index.html" method="post" class="message">
<input type="text" value="Name" onFocus="this.select();" onMouseOut="javascript:return false;"/>
<input type="text" value="Email" onFocus="this.select();" onMouseOut="javascript:return false;"/>
<input type="text" value="Subject" onFocus="this.select();" onMouseOut="javascript:return false;"/>
<textarea></textarea>
<input type="submit" value="Send"/>
</form>
</div>
-->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<div id="footer">
<p>
Aparoksha'17
</p>
<div class="clearfix">
<ul class="connect">
<li><a href="http://freewebsitetemplates.com/go/facebook/" target="_blank" class="facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="http://freewebsitetemplates.com/go/googleplus/" target="_blank" ><i class="fa fa-google-plus"></i></a></li>
<li><a href="http://freewebsitetemplates.com/go/twitter/" target="_blank" ><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
</body>
</html>