index.html 1.1 KB

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>toot-my-t-shirt</title>
  6. <link rel="icon" type="image/png" href="/static/images/sb-favicon.png">
  7. <link rel="stylesheet" type="text/css" href="/static/css/sb.css">
  8. <script type="text/javascript" src="/static/js/sb.js"></script>
  9. </head>
  10. <body>
  11. <div id="main">
  12. <h1>toot-my-t-shirt</h1>
  13. <div id="video-container">
  14. <video id="sb-video" autoplay="true" muted="muted"></video>
  15. </div>
  16. <div id="canvas-container">
  17. <canvas id="sb-canvas"></canvas>
  18. </div>
  19. <button id="init-btn" name="init-btn" onClick="initCamera()">Run!</button>
  20. <button id=take-photo-btn" name="take-photo-btn" onClick="takePhoto()">Take photo!</button>
  21. <button id=send-photo-btn" name="send-photo-btn" onClick="sendPhoto()">Share photo!</button>
  22. <button id=cancel-photo-btn" name="cancel-photo-btn" onClick="cancelPhoto()">Cancel photo</button>
  23. </div>
  24. </body>
  25. </html>