smartstudy-buddyhub / login.html
itamarlifshitz's picture
make the site look bettrer and every button working and doing its job
2a1f177 verified
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ื”ืชื—ื‘ืจื•ืช - SmartStudy BuddyHub</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<custom-navbar></custom-navbar>
<main class="container">
<section class="auth-form">
<h1>ื”ืชื—ื‘ืจื•ืช</h1>
<form id="loginForm">
<div class="form-group">
<label for="email">ืื™ืžื™ื™ืœ</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="password">ืกื™ืกืžื”</label>
<input type="password" id="password" required>
</div>
<button type="submit" class="btn primary">
<i class="fas fa-sign-in-alt"></i> ื”ืชื—ื‘ืจ
</button>
</form>
<p>ืื™ืŸ ืœืš ื—ืฉื‘ื•ืŸ? <a href="/register.html">ื”ื™ืจืฉื ืขื›ืฉื™ื•</a></p>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html>