index.html 725 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <h1>Musare!</h1>
  9. <h1>Passport/RethinkDB Example</h1>
  10. {{#user}}
  11. <p>You are logged in as <span style="font-weight: bold;">{{ username }}</span>. Account created through <span style="font-weight: bold;">{{ type }}</span>.</p>
  12. <a href='/auth/user'>See user data</a>
  13. </br>
  14. <a href='/auth/logout'>Logout</a>
  15. {{/user}}
  16. {{^user}}
  17. <p>You are not logged in.</p>
  18. <a href='/auth/login/github'>Login with GitHub</a>
  19. <form action="/auth/login">
  20. <input id="username" name="username" type="text">
  21. <input id="password" name="password" type="password">
  22. <button type="submit">Submit</button>
  23. </form>
  24. {{/user}}
  25. </body>
  26. </html>