Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1.  
  2. {% extends 'base.html' %}
  3.  
  4. {% block content %}
  5. <div class='container'>
  6. <div class='row' align='center'>
  7. <form class='col s12 m12' method='POST'>
  8. <div class='row'>
  9. <div class="col s12 m12">
  10. <h1> Hello! </h1>
  11. </div>
  12. </div>
  13.  
  14. <div class='row'>
  15. <div class="input-field col s6 m12" >
  16. <input placeholder="Write your name" name='name' id="first_name" type="text">
  17. <label for="first_name">Name</label>
  18. </div>
  19. <div class="input-field col s6 m12" >
  20. <input placeholder="Write your surname" name='surname' id="last_name" type="text">
  21. <label for="last_name">Surname</label>
  22. </div>
  23. <div class="input-field col s6 m12" >
  24. <input placeholder="Enter your age" name='age' id="age" type="number">
  25. <label for="age">Age</label>
  26. </div>
  27. </div>
  28. </div>
  29.  
  30. <div class='row' align='center'>
  31. <button class="btn waves-effect waves-light" type="submit">Submit
  32. <i class="material-icons right">send</i>
  33. </button>
  34. </div>
  35. </form>
  36. </div>
  37. </div>
  38. </div>
  39. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement