Basic frontend login ui
This commit is contained in:
24
frontend/index.html
Normal file
24
frontend/index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user