Moved frontend/index.html to frontend/html/index.html
Closing #2; Closing #1
This commit is contained in:
parent
feb5689757
commit
b65b5570cc
@ -22,7 +22,7 @@ def handle_first_launched():
|
|||||||
|
|
||||||
@app.get("/")
|
@app.get("/")
|
||||||
@app.get("/<path:url_path>")
|
@app.get("/<path:url_path>")
|
||||||
def handle_get(url_path: str = "index.html") -> Response:
|
def handle_get(url_path: str = "html/index.html") -> Response:
|
||||||
"""
|
"""
|
||||||
Handle all get requests that are made.
|
Handle all get requests that are made.
|
||||||
"""
|
"""
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
|
|
||||||
<link rel="stylesheet" href="index.css"/>
|
|
||||||
<title>Login</title>
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@500&display=swap" rel="stylesheet">
|
|
||||||
<head>
|
|
||||||
<body>
|
|
||||||
<div class="wrapper">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<p id="login">Sign In</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="idiv">
|
|
||||||
<input class="input" id="username" type="text" placeholder="Username">
|
|
||||||
<input class="input" id="password" type="password" placeholder="Pasword">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="help">
|
|
||||||
<div>
|
|
||||||
<a href="" id="forgot_password">Forgot Password</a>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<a href="register.html" id="register">Register</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="error">
|
|
||||||
<label id="errlabel"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="buttons">
|
|
||||||
<button id="loginb">Login</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script src="index.js"></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
<footer><p>© 2023 Password Manager</p></footer>
|
|
||||||
</html>
|
|
Loading…
x
Reference in New Issue
Block a user