Files
School/Anul 2/Semestrul 2/Web/Lab 7/main.html
T
2024-08-31 12:07:21 +03:00

35 lines
995 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="container text-center" id="index-page">
<h2>News</h2>
<button
type="button"
class="btn btn-primary btn-block"
onclick="location.href='Controllers/Users/login.php'"
>
Login
</button>
<button
type="button"
class="btn btn-primary btn-block"
onclick="location.href='Controllers/News/viewNews.php'"
>
View
</button>
</div>
</body>
</html>