index.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
  8. integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
  9. crossorigin="anonymous">
  10. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  11. <title>med-appointments</title>
  12. </head>
  13. <body>
  14. <noscript>
  15. <p><strong>Sorry but med-appointments cannot work properly without JavaScript enabled.</strong></p>
  16. <p><strong>Please enable it to continue.</strong></p>
  17. </noscript>
  18. <div id="frontEndWiring" style="display: none;">
  19. {
  20. "api": {
  21. "currentUser": "http://localhost:6543/apps/api/test/current_user",
  22. "filters": "http://localhost:6543/apps/api/test/filters",
  23. "users": "http://localhost:6543/apps/api/test/users",
  24. "apptUsers": "http://localhost:6543/apps/api/test/appt_users",
  25. "appointments": "http://localhost:6543/apps/api/test/appointments",
  26. "reassign": "http://localhost:6543/apps/api/test/reassign",
  27. "takebegin": "http://localhost:6543/apps/api/test/take_begin",
  28. "updateCondition": "http://localhost:6543/apps/api/test/update_condition"
  29. },
  30. "testResponse":true
  31. }
  32. </div>
  33. <div id="app"></div>
  34. </body>
  35. </html>