-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (58 loc) · 1.73 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
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Ello Uni</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="fonts/pe-icon-7-stroke.css">
<script type="text/javascript" src="js/java.js"></script>
</head>
<body class="loginmain">
<h1 class="logotitle">ello <i class="pe-7s-magnet" style="font-size: 35px;"></i>ni
<br /><br />
<label style="font-weight: 400; font-size: 50px">
Welcome to<br />your university
</label>
<br /><br />
<label class="littletext">
Chat . Trade . Buy . Sell . Live .</label>
</h1>
<div class="card">
<i class="pe-7s-unlock lockicon"></i><br />
<div class="cardtext">
<label style="color: #F33B3C">Sign Up</label> <br/ > Using your university email address
</div>
<form class="cardform" id="contactForm" method="post">
<input type="email" name="Email" placeholder="Email" class="cardinput">
<br>
<input type="password" name="Password" placeholder="Password" class="cardinput" style="border-bottom: 1px solid #888;">
<div class="wrap">
<div class="box">
<button class="cta" type="submit">
<a>Join</a>
<span class="shape">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</span>
</button>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript">
$(".cta").mouseenter(function(){
$(this).addClass("active").delay(300).queue(function(next){
$(this).removeClass("active");
next();
});
});
</script>
</body>
</html>