forked from Robby-Akbar/Sandung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
executable file
·41 lines (40 loc) · 1.29 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*
* >_Created by robby on 08 April.
* Time: 19:55
* Copyright @ 2020
*
*/
session_start();
if(!$_SESSION["idUse"]){
header('Location: landing.php');
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome - Sandung</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body id="bg-empat" class="container">
<table height="100%" width="100%">
<tr height="20%"><td valign="top" style="padding: 15px;"><img src="assets/sandung.png" alt="logo sandung" width="250dp"></td></tr>
<tr height="80%"><td valign="top" align="center" style="color: white">
<h1>Selamat Datang di Sandung<br><a href="index.php" style="color: greenyellow">Ayo Jelajah !</a></h1>
<img id="aa" src="assets/rocket.png" alt="logo roket" width="50dp" class="bounce">
</td></tr>
</table>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$("#aa").click(function() {
$('#aa').removeClass('bounce');
$('#aa').addClass('rocket');
});
</script>
</body>
</html>