anasazhar

index.html

Nov 8th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 KB | None | 0 0
  1. {% extends 'main_layout.html' %}
  2.  
  3.  
  4. {% block content %}
  5. <section class="content">
  6.     <div class="container">
  7.         <div class="row">
  8.             <div class="col-6">
  9.                 <form action="{{url_for('index')}}" method="post">
  10.                     <input type="text" class="form-control" name="title" placeholder="Title">
  11.                     <br>
  12.                     <textarea type="text" class="form-control" name="note" placeholder="Put your note here" rows="5"></textarea>
  13.                     <br>
  14.                     <button class="btn btn-primary">Add Note</button>
  15.                 </form>
  16.             </div>
  17.             <div class="col-6">
  18.                 {% for title in notes %}
  19.                 <div class="card">
  20.                   <div class="card-body">
  21.                     <h5 class="card-title">{{ title }}</h5>
  22.                     <h6 class="card-subtitle mb-2 text-muted">{{ notes[title]["date"] }}</h6>
  23.                     <p class="card-text">{{ notes[title]["note"] }}</p>
  24.                     <hr>
  25.                   </div>
  26.                 </div>
  27.                 {% endfor %}
  28.             </div>
  29.         </div>
  30.     </div>
  31. </section>
  32. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment