index.ejs 565 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Sendd</title>
  5. <link rel='stylesheet' href='/stylesheets/style.css' />
  6. </head>
  7. <body>
  8. <script>
  9. // Check for the various File API support.
  10. if (!(window.File && window.FileReader && window.FileList && window.Blob)) {
  11. alert('The File APIs are not fully supported by your browser. This webapp will not work.');
  12. }
  13. </script>
  14. <h1>Sendd</h1>
  15. <p>Welcome to Sendd, a simple, direct file sender.</p>
  16. <a href="/send">Send a file</a>
  17. <a href="/receive">Receive a file</a>
  18. </body>
  19. </html>