You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
779 B

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. <?php $this->layout('layout', ['title' => $title]); ?>
  2. <div class="ui middle aligned center aligned grid">
  3. <div class="column">
  4. <h1>X-Ray</h1>
  5. <form class="ui large form" action="/parse" method="get">
  6. <div class="ui stacked segment">
  7. <div class="field">
  8. <div class="ui left icon input">
  9. <i class="linkify icon"></i>
  10. <input type="url" name="url" placeholder="http://example.com">
  11. </div>
  12. </div>
  13. <button class="ui fluid large teal submit button">Go</button>
  14. </div>
  15. </form>
  16. </div>
  17. </div>
  18. <style type="text/css">
  19. body {
  20. background-color: #e9e9e9;
  21. }
  22. body > .grid {
  23. height: 100%;
  24. }
  25. .image {
  26. margin-top: -100px;
  27. }
  28. .column {
  29. max-width: 450px;
  30. }
  31. </style>