39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no">
|
|
<title>PedsHub</title>
|
|
<link rel="stylesheet" href="launcher.css">
|
|
</head>
|
|
<body>
|
|
<div class="launcher">
|
|
<div id="connecting-screen" style="display:none;">
|
|
<div class="logo-text">PedsHub</div>
|
|
<p class="subtitle">Connecting...</p>
|
|
<div class="spinner"></div>
|
|
<button id="btn-change-server" class="btn-link">Change Server</button>
|
|
</div>
|
|
|
|
<div id="setup-screen">
|
|
<div class="logo-text">PedsHub</div>
|
|
<p class="subtitle">Pediatric Education & Quiz Platform</p>
|
|
|
|
<div class="form-group">
|
|
<label>Server URL</label>
|
|
<input type="url" id="server-url" placeholder="https://quiz.danvics.com" autocapitalize="none" autocorrect="off" spellcheck="false">
|
|
</div>
|
|
|
|
<button id="btn-connect" class="btn-primary">Connect</button>
|
|
|
|
<p class="hint">Enter the URL of your PedsHub server. If you don't have one, use the default.</p>
|
|
|
|
<div class="footer">
|
|
<p>PedsHub — Pediatric Education Platform</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="launcher.js"></script>
|
|
</body>
|
|
</html>
|