123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
- integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
- crossorigin="anonymous">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title>med-appointments</title>
- </head>
- <body>
- <noscript>
- <p><strong>Sorry but med-appointments cannot work properly without JavaScript enabled.</strong></p>
- <p><strong>Please enable it to continue.</strong></p>
- </noscript>
- <div id="frontEndWiring" style="display: none;">
- {
- "api": {
- "currentUser": "http://localhost:6543/apps/api/test/current_user",
- "filters": "http://localhost:6543/apps/api/test/filters",
- "users": "http://localhost:6543/apps/api/test/users",
- "apptUsers": "http://localhost:6543/apps/api/test/appt_users",
- "appointments": "http://localhost:6543/apps/api/test/appointments",
- "reassign": "http://localhost:6543/apps/api/test/reassign",
- "takebegin": "http://localhost:6543/apps/api/test/take_begin",
- "updateCondition": "http://localhost:6543/apps/api/test/update_condition"
- },
- "testResponse":true
- }
- </div>
- <div id="app"></div>
- </body>
- </html>
|