Guest User

Untitled

a guest
Aug 23rd, 2018
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. <div id="successful_login" class="fix-middle">
  2. <div class="container text-center">
  3. <h1>Welcome back to the internet!</h1>
  4. <p>You've successfully managed to log into a nonexistant account in order to test a login dialog box.<br> If you like it, you are welcomed to use it wherever you want, no strings attached.<br><br><a href="#" class="link dialog-reset">Rerun the whole thing.</a></p>
  5. </div>
  6. </div>
  7. <div id="successful_registration" class="fix-middle">
  8. <div class="container text-center">
  9. <h1>Welcome to the internet!</h1>
  10. <p>You've successfully managed to register for a nonexistant account in order to test a registration dialog box.<br> If you like it, you are welcomed to use it wherever you want, no strings attached.<br><br><a href="#" class="link dialog-reset">Rerun the whole thing.</a></p>
  11. </div>
  12. </div>
  13.  
  14. <div id="dialog" class="dialog dialog-effect-in">
  15. <div class="dialog-front">
  16. <div class="dialog-content">
  17. <form id="login_form" class="dialog-form" action="" method="POST">
  18. <fieldset>
  19. <legend>Log in</legend>
  20. <div class="form-group">
  21. <label for="user_username" class="control-label">Username:</label>
  22. <input type="text" id="user_username" class="form-control" name="user_username" autofocus/>
  23. </div>
  24. <div class="form-group">
  25. <label for="user_password" class="control-label">Password:</label>
  26. <input type="password" id="user_password" class="form-control" name="user_password"/>
  27. </div>
  28. <div class="text-center pad-top-20">
  29. <p>Have you forgotten your<br><a href="#" class="link"><strong>username</strong></a> or <a href="#" class="link"><strong>password</strong></a>?</p>
  30. </div>
  31. <div class="pad-top-20 pad-btm-20">
  32. <input type="submit" class="btn btn-default btn-block btn-lg" value="Continue">
  33. </div>
  34. <div class="text-center">
  35. <p>Do you wish to register<br> for <a href="#" class="link user-actions"><strong>a new account</strong></a>?</p>
  36. </div>
  37. </fieldset>
  38. </form>
  39. </div>
  40. </div>
  41. <div class="dialog-back">
  42. <div class="dialog-content">
  43. <form id="register_form" class="dialog-form" action="" method="POST">
  44. <fieldset>
  45. <legend>Register</legend>
  46. <div class="form-group">
  47. <label for="user_username" class="control-label">Username:</label>
  48. <input type="text" id="user_username" class="form-control" name="user_username"/>
  49. </div>
  50. <div class="form-group">
  51. <label for="user_password" class="control-label">Password:</label>
  52. <input type="password" id="user_password" class="form-control" name="user_password"/>
  53. </div>
  54. <div class="form-group">
  55. <label for="user_cnf_password" class="control-label">Confirm password:</label>
  56. <input type="password" id="user_cnf_password" class="form-control" name="user_cnf_password"/>
  57. </div>
  58. <div class="form-group pad-top-20 form-group-checkbox">
  59. <div class="checkbox">
  60. <label>
  61. <input type="checkbox" id="user_terms" name="user_terms">
  62. I have read and I agree with the Terms and Conditions
  63. </label>
  64. </div>
  65. </div>
  66. <div class="pad-btm-20">
  67. <input type="submit" class="btn btn-default btn-block btn-lg" value="Continue"/>
  68. </div>
  69. <div class="text-center">
  70. <p>Return to <a href="#" class="link user-actions"><strong>log in page</strong></a>?</p>
  71. </div>
  72. </fieldset>
  73. </form>
  74. </div>
  75. </div>
  76. </div>
Add Comment
Please, Sign In to add comment