A rewrite of the Raspberry Pi Garage Door Opener using Flask
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.9 KiB

5 years ago
  1. <html>
  2. <head>
  3. <title>Pi Garage Door Opener</title>
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet" media="screen">
  6. <link href="{{ url_for('static', filename='css/styles.css') }}" rel="stylesheet" media="screen">
  7. <link rel="manifest" href="{{ url_for('static', filename='manifest.json') }}">
  8. <link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='images/apple-touch-icon.png') }}">
  9. <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='images/favicon-32x32.png') }}">
  10. <link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='images/favicon-16x16.png') }}">
  11. <script src="{{ url_for('static', filename='js/app.js') }}"></script>
  12. </head>
  13. <body>
  14. <div class="header">
  15. <a href="https://github.com/Rav4s/New-Pi-Garage-Door-Opener" class="text">Pi Garage Door Opener</a>
  16. <div class="header-right">
  17. <a class="active" href="/logout">Logout</a>
  18. </div>
  19. </div>
  20. <div class="row">
  21. <div class="column" style="background-color:#ccc">
  22. <p style="font-size:25px; text-align:center;">{{ message }}</p>
  23. <p style="font-size:25px; text-align:center;">The current sensor distance is {{ distance }} centimeters.</p>
  24. </div>
  25. <div class="column" style="background-color:#ddd">
  26. <p style="font-size:25px; text-align:center;">Trigger the garage door opener.</p>
  27. <div style="text-align:center;">
  28. <a class="overridefloat" href="/open-garage">{{ OpenOrClose }}</a>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="header" style="padding: 10px 10px;">
  33. <p style="text-align:center;">Made with &#10084;&#65039; by <a class="none" href="https://www.yeetpc.com/about.html" target="_blank">Ravi Shah</a></p>
  34. </div>
  35. </body>
  36. </html>