Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
603 changes: 603 additions & 0 deletions feed/index.html

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Weave Login Page" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<link href="dist/css/index.css" rel="stylesheet" />
<title>Weave | Login</title>
</head>
<body>
<main
class="d-flex justify-content-center align-items-center vh-100 bg-light"
>
<section class="login-form p-5 rounded bg-white m-2">
<form id="loginForm">
<h1 class="fw-bolder text-center mb-4 header-title">Weave</h1>
<div class="form-floating mb-3">
<input
type="email"
class="form-control"
id="floatingInput"
placeholder=""
required
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
/>
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input
type="password"
class="form-control"
id="floatingPassword"
placeholder=""
required
minlength="8"
/>
<label for="floatingPassword">Password</label>
</div>
<div class="mt-1 mb-3">
<a href="" class="mb-3 btn-link">Forgot Password?</a>
</div>
<button type="submit" class="btn btn-custom w-100" id="loginButton">
Login
</button>
<div
class="d-flex align-items-center border-bottom border-dark-subtle mx-4 my-3"
></div>
<div class="d-flex flex-column align-items-center">
<button
type="button"
class="btn btn-custom w-50"
id="registerButton"
>
Register
</button>
</div>
</form>
</section>
</main>
<script src="script.js"></script>
</body>
</html>
Loading