Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
997 B

  1. <div class="col-md-8">
  2. <div class="blogPost">
  3. <div class="text-center">
  4. <h2>Login</h2>
  5. </div>
  6. <form action="/admin/" method ="post" class="p-2">
  7. <div class="form-group">
  8. <label for="username1">User Name</label>
  9. <input class="form-control" type="test" id="username1" name="username" placeholder="Enter username" required>
  10. </div>
  11. <div class="form-group">
  12. <label for="password1">Password</label>
  13. <input class="form-control" type="password" name="password" id="password1" placeholder="Password" required>
  14. </div>
  15. <div class="text-center">
  16. <button class="btn btn-lg btn-secondary">Login</button>
  17. </div>
  18. <br>
  19. </form>
  20. <!--
  21. /\_/\ ___
  22. = o_o =_______ \ \
  23. __^ __( \.__) )
  24. (@)<_____>__(_____)____/
  25. -->
  26. </div>
  27. </div>