2
0
mirror of https://git.coolaj86.com/coolaj86/telebit-relay.js.git synced 2025-02-23 01:28:04 +00:00
2018-08-10 07:44:42 +00:00

27 lines
651 B
HTML

<html>
<head>
<title>Telebit Account</title>
</head>
<body>
<h1>Login</h1>
<form class="js-auth-form">
<input class="js-auth-subject" placeholder="email" type="email"/>
<button class="js-auth-submit" type="submit">Login</button>
</form>
<div class="v-app">
<ol>
<li v-for="domain in domains">
{{ domain }}
</li>
</ol>
</div>
<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="assets/oauth3.org/oauth3.core.js"></script>
<script src="js/account.js"></script>
</body>
</html>