-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
60 lines (46 loc) · 1.58 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Academia!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="body"></div>
<div class="grad"></div>
<div class="header">
<div>Welcome to<span> Academia!</span></div>
</div>
<br>
<div class="login">
<input type="text" placeholder="Webmail ID" name="user"><br>
<input type="password" placeholder="Password" name="password"><br>
<input type="button" value="Login" >
<input type="button" value="Signup!" data-toggle="modal" data-target="#sm">
<a href="#"><p data-toggle="modal" data-target="#sm">Forgot Password</p></a>
</div>
<div class = "modal fade" id="sm" role="dialog">
<div class = "modal-dialog">
<div class = "modal-content">
<form class="form-horizontal">
<div class="modal-body">
<div class="form-group">
<div>
<input type="email" class="form-control" id="w-id" placeholder="Enter Webmial ID">
</div>
</div>
</div>
<div class="modal-footer">
<a class = "btn btn-default" data-dismiss = "modal">Close</a>
<a class = "btn btn-primary" type="submit">Submit</a>
</div>
</form>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>