Advertisement
Guest User

index

a guest
Feb 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. {% extends "layout.html" %}
  2.  
  3. {% block title %}
  4. Welcome to PolitiTweets!
  5. {% endblock %}
  6.  
  7. {% block main %}
  8. <div style="text-align:center; padding-top:10%;"><img src="static/logo.png"></div>
  9.  
  10. <form action="{{ url_for('index') }}" method="post">
  11.  
  12. <fieldset>
  13.  
  14. <!-- Form Name -->
  15. <legend>Search through US Politician tweets.</legend>
  16.  
  17. <div style="padding-top:1%;" class="form-group">
  18. <input autocomplete="off" autofocus class="form-control" name="query" placeholder="Search Politician Tweets" type="text"/>
  19. </div>
  20.  
  21. <div class="form-group">
  22. <button class="btn btn-default" type="submit">Search</button>
  23. </div>
  24.  
  25. </fieldset>
  26.  
  27. </form>
  28.  
  29.  
  30.  
  31.  
  32. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement