29 lines
784 B
HTML
29 lines
784 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Authentication</title>
|
|
<script src="/js/config.js"></script>
|
|
<script src="/js/utils.js"></script>
|
|
<script defer src="/js/auth.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<form id="auth_form">
|
|
<label for="neptun">Neptun</label>
|
|
<input type="text" id="neptun" name="neptun">
|
|
<br>
|
|
<label for="email">Email</label>
|
|
<input type="text" id="email" name="email">
|
|
<br>
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password">
|
|
<br>
|
|
<input type="button" value="Login" onclick="login()">
|
|
<input type="button" value="Register" onclick="register()">
|
|
</form>
|
|
</body>
|
|
|
|
</html> |