-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
28 lines (27 loc) · 1000 Bytes
/
welcome.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Portal</title>
<link rel="stylesheet" href="welcome_page.css">
</head>
<body>
<div class="container">
<div class="text-section">
<h2>Discover Your <br> Dream Job here</h2>
<p>Explore all the existing job roles based on your interest and study major</p>
<div class="button-container">
<!-- Login and Register buttons redirect to PHP pages -->
<button class="login-btn" onclick="window.location.href='log.php';">Login</button>
<button class="register-btn" onclick="window.location.href='reg.php';">Register</button>
</div>
</div>
<div class="image-section">
<img src="woman.jpg" alt="Woman at computer" class="illustration">
</div>
</div>
</body>
</html>