-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsplash.html
More file actions
21 lines (21 loc) · 861 Bytes
/
splash.html
File metadata and controls
21 lines (21 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Splash Screen</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css" />
<link rel="stylesheet" type="text/css" href="global.css">
<link rel="stylesheet" type="text/css" href="splash.css">
</head>
<body>
<div class="container">
<div class="welcome-text">Welcome to Electron OAuth Example</div>
<div class="author-name">Antariksh Pratham</div>
<div class="version">v1.0</div>
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
</div>
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script>
</body>
</html>