-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (99 loc) · 3.24 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
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
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SWI-FT</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet" />
<style>
body {
background: url('/assets/bg.jpg') no-repeat fixed;
background-size: cover;
backdrop-filter: brightness(0.5);
min-height: 100vh;
}
.full-height {
height: 100vh;
}
.full-width {
width: 100vw;
}
.rounded {
border-radius: 8px;
}
.padded-left {
padding-left: 1rem;
}
.no-margin {
margin: 0 !important;
}
</style>
</head>
<body>
<div class="navbar-fixed z-depth-0">
<nav class="transparent z-depth-0">
<div class="nav-wrapper transparent padded-left">
<a href="#!" class="brand-logo">
<img src="/assets/Siemens-Logo-1.png" alt="" width="100px" />
</a>
</div>
</nav>
</div>
<main class="container">
<div class="row">
<img
src="/assets/frame-m.png"
alt="App Frame"
class="responsive-img hide-on-med-and-up" />
<div class="col s12 m8 offset-m2 l8">
<div class="card-panel rounded no-margin" >
<h1 class="hide-on-med-and-down">SWI-FT</h1>
<p class="flow-text">
Follow the steps to install the app on your android device.
</p>
<ul class="collection">
<li class="collection-item avatar">
<i class="material-icons circle green">cloud_download</i>
<span class="title"> Download the app from this link: </span>
<a href="/assets/swift-debug.apk" class="btn" class="secondary-content">
<i class="material-icons left">android</i>
Download
</a>
</li>
<li class="collection-item avatar">
<i class="material-icons circle blue">install_mobile</i>
<span class="title">
Install the app on your android device by selecting the APK
file from Downloads.
</span>
</li>
<li class="collection-item avatar">
<i class="material-icons circle purple">verified_user</i>
<span class="title">
Click 'Install Anyway' when prompted.
</span>
</li>
</ul>
</div>
</div>
<div class="col s4 hide-on-med-and-down">
<img src="/assets/frame.png" alt="App Frame" class="responsive-img" />
</div>
</div>
</main>
<script
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js" />
<script src="https://unpkg.com/vue@next"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
M.AutoInit()
})
</script>
</body>
</html>