Advertisement
dadang9

Untitled

Aug 19th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <?php include '../config/base_path.php' ?>
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>Yadika 13</title>
  8.  
  9. <link rel="stylesheet" href="<?php echo BASE_URL?>/assets/css/bootstrap.css">
  10. <link rel="stylesheet" href="<?php echo BASE_URL?>/assets/css/bootstrap-theme.css">
  11. <link rel="stylesheet" href="<?php echo BASE_URL?>/vendor/font-awesome/css/font-awesome.css">
  12. <link rel="stylesheet" href="<?php echo BASE_URL?>/assets/css/custom.css">
  13. </head>
  14. <body>
  15.  
  16. <div class="container">
  17. <div class="row">
  18. <div class="col-lg-6 col-lg-offset-3">
  19. <div class="login-style">
  20. <h2>Admin</h2>
  21. <hr class="hr">
  22. <h2>Silahkan Login</h2>
  23. <form action="admin-app/admin-login-app.php" method="post">
  24. <div class="form-group">
  25. <label for="username">Username:</label>
  26. <input type="text" name="username" class="form-control" id="username">
  27. </div>
  28. <div class="form-group">
  29. <label for="pwd">Password:</label>
  30. <input type="password" name="password" class="form-control" id="pwd">
  31. </div>
  32. <input type="submit" name="submit-admin-login" class="btn btn-primary" value="SUBMIT">
  33. </form>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38.  
  39. <script src="<?php echo BASE_URL?>/assets/js/jquery-3.2.1.js"></script>
  40. <script src="<?php echo BASE_URL?>/assets/js/bootstrap.js"></script>
  41. <script src="<?php echo BASE_URL?>/assets/js/custom.js"></script>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement