user.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>HM0x14 - WE(P)B | User</title>
  7. <link href="static/min.css" rel="stylesheet" type="text/css">
  8. <style>
  9. .hero {
  10. background: #eee;
  11. padding: 20px;
  12. border-radius: 10px;
  13. margin-top: 1em;
  14. }
  15. input,textarea {
  16. border: 1px solid #ccc;
  17. box-shadow: inset 0 1px 3px #ddd;
  18. border-radius: 2px;
  19. vertical-align: middle;
  20. -webkit-box-sizing: border-box;
  21. -moz-box-sizing: border-box;
  22. box-sizing: border-box;
  23. width: 320px;
  24. max-width: 100%;
  25. padding: 0.5em 0.6em;
  26. margin-bottom: 0.5em;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. {% include 'navbar.html' %}
  32. <div class="container">
  33. <div class="row">
  34. <div class="col c6">
  35. <h1>Update description</h1>
  36. <hr>
  37. <form method="post" action="">
  38. <textarea name="description" id="description" rows="12">{{ description }}</textarea>
  39. <input type="submit" class="btn btn-a btn-sm smooth" value="Update">
  40. </form>
  41. </div>
  42. <div class="col c6">
  43. <h1>Profile description</h1>
  44. <hr>
  45. <div class="hero">
  46. <p>{{ description }}</p>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </body>
  52. </html>