szoe-pontok/static/index.html

29 lines
784 B
HTML
Raw Permalink Normal View History

2024-10-10 15:34:48 +00:00
<!DOCTYPE html>
2024-10-11 13:58:12 +00:00
<html lang="en">
2024-10-10 15:34:48 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-10-11 13:58:12 +00:00
<title>Authentication</title>
<script src="/js/config.js"></script>
<script src="/js/utils.js"></script>
<script defer src="/js/auth.js"></script>
2024-10-10 15:34:48 +00:00
</head>
2024-10-11 13:58:12 +00:00
2024-10-10 15:34:48 +00:00
<body>
2024-10-11 13:58:12 +00:00
<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>
2024-10-10 15:34:48 +00:00
</body>
2024-10-11 13:58:12 +00:00
2024-10-10 15:34:48 +00:00
</html>