szoe-pontok/static/index.html

37 lines
974 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>
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/screen.css">
</head>
<body>
<div class="container">
<h1>SZOE Pontok</h1>
<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>
</div>
</body>
</html>