adaugat lab4 si lab5

Signed-off-by: hellisabove <robertnedela15@gmail.com>
This commit is contained in:
hellisabove
2026-05-25 11:13:40 +03:00
parent 8b7c9a5527
commit 35893a4012
78 changed files with 60025 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IAP1 lab login</title>
<link href="public/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<style>
.form-signin {
max-width: 330px;
padding: 1rem;
}
</style>
</head>
<body class="d-flex align-items-center py-4 bg-body-tertiary">
<main class="form-signin w-100 m-auto">
<form method="post" action="/login">
<h1 class="h3 mb-3 fw-normal">Please sign in</h1>
{% if error: %}
<div class="alert alert-warning" role="alert">{{error}}</div>
{% endif %}
<div class="form-floating">
<input type="email" class="form-control" id="floatingInput"
name="email" placeholder="name@example.com">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input type="password" name="password"
class="form-control" id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
<div class="form-check text-start my-3">
<input class="form-check-input" type="checkbox" value="remember-me" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Remember me
</label>
</div>
<button class="btn btn-primary w-100 py-2" type="submit">Sign in</button>
<p class="mt-5 mb-3 text-body-secondary">&copy; 20172024</p>
</form>
</main>
<script src="public/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>