-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
executable file
·80 lines (61 loc) · 3.14 KB
/
welcome.html
File metadata and controls
executable file
·80 lines (61 loc) · 3.14 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Class Manager Alpha</title>
<link rel="stylesheet" href="css/welcome.css">
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!--- Web App Meta data --->
<link rel="apple-touch-icon" href="webapp/template.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body>
<div class="container">
<div id="slides">
<div class="setup">
<img class="logo" src="images/logo.png"></img>
<h1>Welcome</h1>
<p style="-webkit-animation:pop-in 0.1s; padding-top: 3.5rem;"><a class="slidesjs-next" href="#" style="text-decoration: none; color: white;">Set up this device
<span class="ion-chevron-right" style="padding-left: 5px;"></span></a></p>
</div>
<div class="setup"> <h1 style="font-size: 25px;">Please sign in</h1>
<form>
<input placeholder="Username" class="text_field" type="text" name="username" style="margin-top: 1rem;"><br>
<input placeholder="Password" class="text_field" type="password" name="password" style="margin-top: 0.8rem;">
<br/><button style="-webkit-animation:pop-in 0.5s;"class="sayyes slidesjs-next">Sign me in</button>
<br/><br/><br/>
<a href="#" class="slidesjs-previous back" style="color:white"><i class="ion-ios-arrow-left"></i> Back</a>
</form>
</div>
<div class="setup"> <span class="ion-ios-information-outline" style="font-size: 35px;"></span><br>
<h1 style="margin-top:-1rem; font-size: 25px;">Are you the owner of this device ?</h1>
<button style="-webkit-animation:pop-in 0.5s;" class="sayyes slidesjs-next">Yes, I am</button><br>
<button style="-webkit-animation:pop-in 0.5s;" class="sayno slidesjs-next">No , I am not</button>
<p style="font-size: 15px; width: 40vw; position: relative; left: 50%; transform: translateX(-50%); margin-top: 4rem;">Choose no if you're using school provided device.</p>
<br/><br/>
<a href="#" class="slidesjs-previous back" style="color:white"><i class="ion-ios-arrow-left"></i> Back</a>
</div>
<div class="setup">
<img class="logo" src="images/logo.png"></img>
<h1 style="padding-bottom: 1rem;">Finished !</h1>
<span class="ion-checkmark" style="-webkit-animation:pop-in 1.0s; font-size: 30px;"></span><br>
<p style="padding-top: 1rem;"><a href="index.html" style="-webkit-animation:pop-in 1.5s; text-decoration: none; color: white;">Start using an app
<span class="ion-chevron-right" style="padding-left: 5px;"></span></a></p></div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/jquery.slides.min.js"></script>
<footer>
<script>
$(function() {
$('#slides').slidesjs({
navigation: false
});
});
</script>
</footer>
</body>
</html>