15 lines
368 B
HTML
15 lines
368 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
<body>
|
|
<h1>LOGIN</h1>
|
|
<div id="login">
|
|
<input type="text" name="user" id="user" /><br />
|
|
<input type="password" name="password" id="password" /><br />
|
|
<button id="login-button">Login</button>
|
|
</div>
|
|
|
|
<script type="module" src="/src/login.ts"></script>
|
|
</body>
|
|
</html>
|