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.
|
|
<html> <head> <title>Pi Garage Door Opener</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="static/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="static/styles.css" rel="stylesheet" media="screen"> </head> <body> <div class="header"> <a href="#" class="text">Pi Garage Door Opener</a> <div class="header-right"> <a class="active" href="/logout">Logout</a> </div> </div> <div class="row"> <div class="column" style="background-color:#ccc"> <p style="font-size:25px;">{{ message }}</p> <p style="font-size:25px;">The current sensor distance is {{ distance }} centimeters.</p> </div> <div class="column" style="background-color:#ddd"> <p style="font-size:25px;">Trigger the garage door opener.</p> <a class="active" href="/open-garage">{{ OpenOrClose }}</a> </div> </div> <div class="header"> <a href="#" class="text">Pi Garage Door Opener</a> <div class="header-right"> <a class="active" href="/logout">Logout</a> </div> </div> </body></html>
|