Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <meta http-equiv="Refresh" content="60;url=http://127.0.0.1:5000/" />
  2. <html>
  3.   <head>
  4.       <title>{{title}} - Alarm Clock </title>
  5.   </head>
  6.   <body>
  7.     <h1> Hello! </h1>
  8.     <div>
  9.   </body>
  10.   <b> Create your alarm here: </b>
  11.   <form action="/" method="get">
  12.   <input type="datetime-local" name="alarm">
  13.   <input type="text" name="user">
  14.   <input type="submit">
  15. </form>
  16.   <p>
  17.     <b>Here is the current weather in Exeter:</b>
  18.     <br>
  19.     <br>
  20.     {{temperature}}
  21.     <br>
  22.     {{pressure}}
  23.     <br>
  24.     {{humidity}}
  25.     <br>
  26.     <br>
  27.     <b> Top stories of today are: </b>
  28.     <br>
  29.     {{story1}}
  30.     <br>
  31.     {{story2}}
  32.     <br>
  33.     {{story3}}
  34.   </p>
  35.      <p>
  36.        <b>Notification log:</b>
  37.        <br>
  38.        {% for notification in notif_log %}
  39.         {{notification}}
  40.         <br>
  41.         {% endfor %}
  42.      </p>
  43.      <b> Cancel your alarm here: </b>
  44.      <form action="/" method="get">
  45.      <input type="datetime-local" name="alarm_to_cancel">
  46.      <input type="submit">
  47.      </form>  
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement