From 3069d1a17eb5ad5adb4420876aabe35b26da058f Mon Sep 17 00:00:00 2001
From: Iqbal <iqbalkhowarizmi@ymail.com>
Date: Wed, 4 Oct 2017 17:39:13 +0700
Subject: [PATCH] Added login page. Still using mock data though.

---
 src/controller/LoginController.php | 29 ++++++++++++++++++++
 src/controller/MainController.php  |  3 ++-
 src/view/login.html                | 43 ++++++++++++++++++++++++++++++
 src/view/style.css                 | 36 +++++++++++++++++++++++++
 4 files changed, 110 insertions(+), 1 deletion(-)
 create mode 100644 src/controller/LoginController.php
 create mode 100644 src/view/login.html
 create mode 100644 src/view/style.css

diff --git a/src/controller/LoginController.php b/src/controller/LoginController.php
new file mode 100644
index 0000000..fd29341
--- /dev/null
+++ b/src/controller/LoginController.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: iqbal
+ * Date: 04/10/17
+ * Time: 16:29
+ */
+
+    session_start();
+
+    $userData = array(
+        "iqbal" => "test",
+        "test" => "pass"
+    );
+
+    if (isset($_GET['logout'])) {
+        $_SESSION['username'] = "";
+        header("Location: ../view/login.html");
+        exit;
+    }
+
+    if (isset($_POST['username'])) {
+        if ($userData[$_POST['username']] === $_POST['password']) {
+            $_SESSION['username'] = $_POST['username'];
+            echo "<script> alert('Login berhasil') </script>";
+        } else {
+            echo "<script> alert('Username atau password salah') </script>";
+        }
+    }
\ No newline at end of file
diff --git a/src/controller/MainController.php b/src/controller/MainController.php
index c0fa816..52c83e7 100644
--- a/src/controller/MainController.php
+++ b/src/controller/MainController.php
@@ -3,7 +3,8 @@
 class MainController {
 
     public static function LoginHandler() {
-        echo "This is login handler";
+        header("Location: http://dagojek.com/src/view/login.html");
+        die();
     }
 
     public static function DefaultHandler() {
diff --git a/src/view/login.html b/src/view/login.html
new file mode 100644
index 0000000..724d78d
--- /dev/null
+++ b/src/view/login.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Login Page | Dagojek</title>
+    <link rel="stylesheet" type="text/css" href="style.css">
+</head>
+
+<body id="login-body">
+
+<div class="container">
+
+    <header id="login-header">
+        <h1>Dagojek Login</h1>
+    </header>
+
+    <section id="login-main">
+        <div id="login-panel">
+            <form name="loginForm" method="post" action="../controller/LoginController.php">
+                <fieldset>
+                    <legend>Login:</legend>
+                    Username: <br>
+                    <input type="text" placeholder="Username" name="username">
+                    <br>
+                    Password: <br>
+                    <input type="password" placeholder="Password" name="password">
+                    <br>
+                    <input type="submit" value="Login">
+                    <a id="register-link" href="register.html">Don't have an account?</a>
+                    <br>
+                </fieldset>
+            </form>
+        </div>
+    </section>
+
+    <footer>
+
+    </footer>
+
+</div>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/src/view/style.css b/src/view/style.css
new file mode 100644
index 0000000..ad7746f
--- /dev/null
+++ b/src/view/style.css
@@ -0,0 +1,36 @@
+#login-body, #register-body {
+    background-color: #333333;
+    color: #ffffff;
+}
+
+#login-header, #register-header {
+    text-align: center;
+    margin-top: 50px;
+}
+
+
+#login-main, #register-main {
+    horiz-align: center;
+    width: 25%;
+    height: 60%;
+    margin: 0 auto;
+}
+
+#register-link {
+    float: right;
+    color: #f4df42;
+    margin-top: 0.3em;
+}
+
+.available {
+    background-color: greenyellow;
+}
+
+.unavailable {
+    background-color: orangered;
+}
+
+input {
+    margin-top: 5px;
+    margin-bottom: 5px;
+}
\ No newline at end of file
-- 
GitLab