123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <!doctype html>
  2. <html class="no-js" lang="en" dir="ltr">
  3. <head>
  4. <base href="./" />
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>ZipConnect</title>
  8. <meta name="description" content="Description for ZipConnect">
  9. <meta name="google" value="notranslate">
  10. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  11. <meta name="theme-color" content="#000000">
  12. <link rel="shortcut icon" href="favicon.ico" />
  13. <link rel="manifest" href="manifest.webapp" />
  14. <link rel="stylesheet" href="content/css/loading.css">
  15. <!-- jhipster-needle-add-resources-to-root - JHipster will add new resources here -->
  16. </head>
  17. <body>
  18. <!--[if lt IE 9]>
  19. <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
  20. <![endif]-->
  21. <jhi-main>
  22. <div class="app-loading">
  23. <div class="lds-css ng-scope">
  24. <div class="lds-pacman">
  25. <div><div></div><div></div><div></div></div>
  26. <div><div></div><div></div><div></div></div>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="app-loading">
  31. <div id="jhipster-error" style="display:none">
  32. <!-- This content is for troubleshooting purpose and will be removed when app renders -->
  33. <h1>An error has occured :-(</h1>
  34. <h2>Usual error causes</h2>
  35. <ol>
  36. <li>You started the application from an IDE and you didn't run <code style="color:red">npm start</code> or <code style="color:red">npm run webpack:build</code>.</li>
  37. <li>You had a network error while running <code style="color:red">npm install</code>. If you are behind a corporate proxy, it is likely that this error was caused by your proxy. Have a look at the JHipster error logs, you will probably have the cause of the error.</li>
  38. <li>You installed a Node.js version that doesn't work with JHipster: please use an LTS (long-term support) version, as it's the only version we support.</li>
  39. </ol>
  40. <h2>Building the client side code again</h2>
  41. <p>If you want to go fast, run <code style="color:red">./mvnw</code> to build and run everything.</p>
  42. <p>If you want to have more control, so you can debug your issue more easily, you should follow the following steps:</p>
  43. <ol>
  44. <li>Install npm dependencies with the command <code style="color:red">npm install</code></li>
  45. <li>Build the client with the command <code style="color:red">npm run webpack:build</code> or <code style="color:red">npm start</code></li>
  46. <li>Start the server with <code style="color:red">./mvnw</code> or using your IDE</li>
  47. </ol>
  48. <h2>Getting more help</h2>
  49. <h3>If you have a question on how to use JHipster</h3>
  50. <p>
  51. Go to Stack Overflow with the <a href="http://stackoverflow.com/tags/jhipster" target="_blank">"jhipster"</a> tag.
  52. </p>
  53. <h3>If you have a bug or a feature request</h3>
  54. <p>
  55. First read our <a href="https://github.com/jhipster/generator-jhipster/blob/master/CONTRIBUTING.md" target="_blank">contributing guidelines</a>.
  56. </p>
  57. <p>
  58. Then, fill a ticket on our <a href="https://github.com/jhipster/generator-jhipster/issues/new/choose" target="_blank">bug tracker</a>, we'll be happy to resolve your issue!
  59. </p>
  60. <h3>If you want to chat with contributors and other users</h3>
  61. <p>
  62. Join our chat room on <a href="https://gitter.im/jhipster/generator-jhipster" target="_blank">Gitter.im</a>. Please note that this is a public chat room, and that we expect you to respect other people and write in a correct English language!
  63. </p>
  64. <!-- end of troubleshooting content -->
  65. </div>
  66. </div>
  67. </jhi-main>
  68. <noscript>
  69. <h1>You must enable javascript to view this page.</h1>
  70. </noscript>
  71. <script type="text/javascript" language="javascript">
  72. // show an error message if the app loading takes more than 5 sec
  73. window.onload=function() {
  74. setTimeout(showError, 4000);
  75. }
  76. function showError() {
  77. var errorElm = document.getElementById("jhipster-error");
  78. if (errorElm && errorElm.style) {
  79. errorElm.style.display = "block";
  80. }
  81. }
  82. </script>
  83. <!-- uncomment this for adding service worker
  84. <script>
  85. if ('serviceWorker' in navigator) {
  86. window.addEventListener('load', function() {
  87. navigator.serviceWorker.register('/service-worker.js')
  88. .then(function () {
  89. console.log('Service Worker Registered');
  90. });
  91. });
  92. }
  93. </script>
  94. -->
  95. <!-- Google Analytics: uncomment and change UA-XXXXX-X to be your site's ID.
  96. <script>
  97. (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
  98. function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
  99. e=o.createElement(i);r=o.getElementsByTagName(i)[0];
  100. e.src='//www.google-analytics.com/analytics.js';
  101. r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
  102. ga('create','UA-XXXXX-X');ga('send','pageview');
  103. </script>-->
  104. </body>
  105. </html>