Files
GiacPoints/frontend/index.html
2023-07-17 16:52:39 +01:00

24 lines
725 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GiacPoints</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic">
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="login">
<article class="card">
<label for="name">Name</label> <br>
<input type="text" id="name"> <br>
<label for="password">Password</label> <br>
<input type="password" id="password"> <br>
<input type="submit" value="Login"> <br>
</article>
</div>
<div id="mainPage" style="display: none;">
<p>Main Page</p>
</div>
</body>
</html>