-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirstauth.html
More file actions
36 lines (34 loc) · 1.89 KB
/
firstauth.html
File metadata and controls
36 lines (34 loc) · 1.89 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
<!DOCTYPE html>
<!--
NanoPlay Website
Copyright (C) Subnodal Technologies. All Rights Reserved.
https://nanoplay.subnodal.com
Licenced by the Subnodal Open-Source Licence, which can be found at LICENCE.md.
-->
<html>
<head>
<title>NanoPlay</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="/media/square.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lexend+Deca&family=Overpass+Mono&family=Material+Icons&display=swap">
<link rel="stylesheet" href="/style.css">
<script src="https://cdn.subnodal.com/lib/submodules.min.js"></script>
<script src="https://cdn.subnodal.com/lib/subelements.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-functions.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.3/firebase-analytics.js"></script>
<script src="/script.js"></script>
<script src="/resources.js"></script>
<script src="/firstauth.js"></script>
</head>
<body hidden>
<p>First auth getting started guide coming soon!</p>
<p>A basic intro to using the NanoPlay will appear here, and we'll also ask you to accept our Community Rules.</p>
<p>But for now, we need to know what you want to be known as on the platform:</p>
<input placeholder="Enter a username" id="username"> <button onclick="firstAuth.finishSetup();">Finish setup</button>
</body>
</html>