-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 3.87 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
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html class="gradient-grey-gold" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<script src="js/materialize.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/jquery.min.js"></script>
<link rel="stylesheet" href="css/gradients.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/home.css" type="text/css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="css/materialize.css" type="text/css" />
<link rel="stylesheet" href="css/materialize.min.css" type="text/css" />
<link rel="icon" type="image/png" href="images/favicon.ico">
<title>CampusConnect</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<script>new WOW().init();</script>
</head>
<body class="main-background-gradient">
<div id="leftpane">
<h1 class="header center wow zoomIn hide-on-small-only" data-wow-delay="0.5s" style="font-family: Montserrat, sans-serif; color: goldenrod; visibility: visible; animation-delay: 0.5s; animation-name: zoomIn;">
Campus Connect
<br />
</h1>
<br />
<p class="wow fadeInUp" data-wow-delay="0.4s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.4s; animation-name: fadeInUp;">
<i class="material-icons" style="font-size: 2em">face</i> Meet similar people <br /><br />
</p>
<p class="wow fadeInUp" data-wow-delay="0.8s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.4s; animation-name: fadeInUp;">
<i class="material-icons" style="font-size: 2em">grid_on</i> Expand your grid <br /><br />
</p>
<p class="wow fadeInUp" data-wow-delay="1.2s" data-wow-duration="1s" style="visibility: visible; animation-duration: 1s; animation-delay: 0.4s; animation-name: fadeInUp;">
<i class="material-icons" style="font-size: 2em">group_add</i> Foster Mutual Improvement <br />
</p>
</div>
<div id="rightpane">
<h2>Sign In</h2>
<br>
<div class="input-field">
<input name="user" id="user" class="validate" type="text">
<label for="user" class="inputlabel">Username</label>
</div>
<div class="input-field s12">
<input id="password" type="password" class="validate">
<label for="password">Password</label>
</div>
<button class="btn waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="submit" type="submit">Submit
<i class="material-icons right">send</i>
</button>
<br />
<br />
<br />
<p>
Don't have an account? Sign Up Now!
</p>
<button class="btn btn-large waves-effect waves-light" style="background-color: #362815; color: goldenrod" id="signup" type="submit">Sign Up
<i class="material-icons right">send</i>
</button>
</div>
</body>
<script src="js/index.js"></script>
</html>