16 lines
379 B
HTML
16 lines
379 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>thing</title>
|
|
</head>
|
|
<body>
|
|
<h1>hi</h1>
|
|
<input type="text" id="user" placeholder="JohnDoe1"/><br>
|
|
<input type="password" id="password"/><br>
|
|
<button onclick="createUser()">Create User</button>
|
|
<button onclick="login()">Login</button>
|
|
</body>
|
|
<script src="/bcrypt.min.js"></script>
|
|
<script src="/index.js"></script>
|
|
</html>
|