From b0e8901513f7c2bbd832f0814b1268a1b0fa7326 Mon Sep 17 00:00:00 2001
From: Fredrick Mangampu Theodorus Pardosi <if316030@students.del.ac.id>
Date: Wed, 17 May 2017 14:10:50 +0700
Subject: [PATCH] tampilan baru login

---
 login.php | 128 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 128 insertions(+)
 create mode 100644 login.php

diff --git a/login.php b/login.php
new file mode 100644
index 0000000..1370cbd
--- /dev/null
+++ b/login.php
@@ -0,0 +1,128 @@
+<?php
+session_start();
+include_once 'functions/fungsi.php';
+include_once 'connection/koneksi.php';
+?> 
+<!DOCTYPE html>
+<html>
+
+    <head>
+        <meta charset="UTF-8">
+        <title>Cafe Bunga Toba</title>
+        <link rel="stylesheet" href="css/normalize.css">
+        <link rel="stylesheet" href="css/main.css" media="screen" type="text/css">
+        <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
+        <link href='http://fonts.googleapis.com/css?family=Playball' rel='stylesheet' type='text/css'>
+        <link rel="stylesheet" href="css/bootstrap.css">
+        <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
+
+        <link rel="stylesheet" href="css/style-portfolio.css">
+        <link rel="stylesheet" href="css/picto-foundry-food.css" />
+        <link rel="stylesheet" href="css/jquery-ui.css">
+        <meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <link href="css/font-awesome.min.css" rel="stylesheet">
+        <link rel="icon" href="favicon-1.ico" type="image/x-icon">
+    </head>
+
+     <body>
+
+        <nav class="navbar navbar-default navbar-fixed-top" role="navigation">
+            <div class="container">
+                <div class="row">
+                    <!-- Brand and toggle get grouped for better mobile display -->
+                    <div class="navbar-header">
+                        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
+                            <span class="sr-only">Toggle navigation</span>
+                            <span class="icon-bar"></span>
+                            <span class="icon-bar"></span>
+                            <span class="icon-bar"></span>
+                        </button>
+                        <a class="navbar-brand" href="index.php">Cafe BUNGA TOBA</a>
+                    </div>
+
+                    <!-- Collect the nav links, forms, and other content for toggling -->
+                    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
+                        <ul class="nav navbar-nav main-nav  clear navbar-right ">
+                            <li><a class="navactive color_animation" href="index.php">WELCOME</a></li>
+                            <?php
+                            if (isset($_SESSION['isLogin']) && (get_session('role') == "member")) {
+                                echo('<li><a class="color_animation" href="#pricing">MENU</a></li>');
+                                echo('<li><a class="color_animation" href="#pesanan">PESANAN</a></li>');
+                                echo('<li><a class="color_animation" href="#pembayaran">Pembayaran</a></li>');
+                                echo('<li><a class="color_animation" href="logout.php">LOGOUT (' . get_session('first_name') . ')</a></li>');
+                            }
+                            if (isset($_SESSION['isLogin']) && (get_session('role') == "karyawan" || get_session('role') == "admin")) {
+                                echo('<li><a class="color_animation" href="#olahmenu">OLAH MENU</a></li>');
+                                echo('<li><a class="color_animation" href="#daftarpesanan">DAFTAR PESANAN</a></li>');
+                                echo('<li><a class="color_animation" href="logout.php">LOGOUT (' . get_session('first_name') . ')</a></li>');
+                            }
+                            if (!isset($_SESSION['isLogin'])) {
+                                echo('<li><a class="color_animation active" href="login.php">LOGIN</a></li>');
+                                echo('<li><a class="color_animation" href="signup.php">SIGN UP</a></li>');
+                            }
+                            ?> 
+
+
+
+                        </ul>
+                    </div><!-- /.navbar-collapse -->
+                </div>
+            </div><!-- /.container-fluid -->
+        </nav>
+        <?php if (!isset($_SESSION['isLogin'])) { ?>
+        <section  id="login"  class="description_content">
+
+                    <div class="text-content container"> 
+                        <div class="inner contact">
+                            <!-- Form Area -->
+                            <div class="contact-form">
+                                <!-- Form -->
+                                <form id="contact-us" method="post" action="login_process.php">
+                                    <!-- Left Inputs -->
+                                    <div class="container">
+                                        <div class="row">
+                                            <div class="col-lg-8 col-md-6 col-xs-12">
+                                                <div class="row">
+                                                    <div class="col-lg-8 col-md-6 col-xs-6">
+                                                          <?php
+                                                            if(isset($_SESSION["error"])){
+                                                            echo "<style='color:red; font-size:35px; font-family: Georgia, serif;'><b>Anda tidak terdaftar</b>";
+                                                            ob_start();
+                                                            ob_end_clean();
+                                                            session_destroy();
+                                                            }
+                                                            ?>
+                                                        <!-- Name -->
+                                                        <input type="text" name="username" id="username" required="required" class="form" placeholder="Username" />
+                                                        <input type="password" name="password" id="password" required="required" class="form" placeholder="Password" />
+                                                    </div>
+
+                                                    <div class="col-xs-6 ">
+                                                        <!-- Send Button -->
+                                                        <button type="submit" id="submit" name="submit" class="text-center form-btn form-btn">Login</button> 
+                                                    </div>
+
+                                                </div>
+                                            </div>
+
+                                        </div>
+                                    </div>
+                                    <!-- Clear -->
+                                    <div class="clear"></div>
+                                </form>
+                            </div><!-- End Contact Form Area -->
+                        </div><!-- End Inner -->
+                    </div>
+                </section>
+                <br><br><br><br><br><br><br><br><br><br><br><br>
+
+            <?php } else {
+                ?>
+
+                <?php if (get_session('role') == "karyawan") { 
+                    header('location: index.php');
+                }
+            }
+                ?>
+
+    </body>
\ No newline at end of file
--
libgit2 0.27.1