35 lines
995 B
HTML
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>
|