-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.php
More file actions
70 lines (57 loc) · 2.69 KB
/
index.php
File metadata and controls
70 lines (57 loc) · 2.69 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Login Portal DC-EVENT</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/logo_IF_square.png" />
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="fonts/iconic/css/material-design-iconic-font.min.css">
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="container-login" style="background-image: url('images/bg08.jpg');">
<div class="wrap-login p-l-55 p-r-55 p-t-1 p-b-30" style="min-height:95vh;">
<form class="login-form validate-form" action="index.php" method="POST">
<span>
<img class="image p-l-48 p-t-1 p-b-1" src="images/logo_IF_square.png" style="max-width: 225px;">
</span>
<span class="login-form-title p-b-30">
Portal Webinar<br>IF Darma Cendika
</span>
<div class="row text-center justify-content-center">
Selamat datang di website informatika UKDC. Silahkan masuk atau buat akun terlebih dahulu.
</div>
<div class="container-login-form-btn p-t-30 p-b-15">
<button class="login-form-btn " name="masuk"><a style="color:white;">Masuk</a></button>
</div>
<div class="container-login-form-btn p-t-15 p-b-40">
<button class="login-form-btn " name="daftar"><a style="color: white;">Daftar</a>
</button>
</div>
</form>
</div>
<!-- tombol bantuan -->
<div style="position:fixed; bottom:0; right:0;color:black;background-color:white;margin:10px;padding:4px;border-radius:5px;">
<a href="https://wa.me/6289529633429" target="_blank" style="text-decoration:underline;">Klik untuk bantuan</a>
</div>
</div>
<!-- script java script -->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/select2/select2.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>
<?php
if (isset($_POST['masuk'])) {
header('Location: masuk.php');
}
if (isset($_POST['daftar'])) {
header('Location:buat-akun.php');
}
?>