<!DOCTYPE html> <html> <head> <title>uBus | Admin System</title> <meta name="description" content="uBus Ticket Reservation System administrator tools."> <link rel="icon" type="image/x-icon" href="img/favicon.ico"> <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="css/style.css"> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script> <script src="http://www.parsecdn.com/js/parse-1.6.6.min.js"></script> <script type="text/javascript" src="js/app.js"></script> </head> <body> <header> <nav> <a href="index.html"><img src="img/logo.png" width="40px"></a> <h1 style="display:inline-block; margin:0; padding-top:10px; padding-left:15px;">Bus Ticket Reservation System</h1> <a href="adminAccount.html" style="color:white;padding:15px 20px;"><i class="fa fa-plus fa-2x"></i></a> <a href="login.html"><i class="fa fa-2x fa-user"></i></a> </nav> </header> <div class="wrapper"> <form method="post" id="adminLogin"> <input type="text" placeholder="Username" id="login_uname"> <input type="password" placeholder="Password" id="login_pass"> <button type="button" onclick="login()">Log-In</button> </form> </div> </body> </html>