A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

131 linhas
5.3KB

  1. @extends('default')
  2. @section('title', 'Preferences')
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. <a>></a>
  6. <a href="{{ route('preferences') }}">Preferences</a>
  7. @endsection
  8. @section('content')
  9. <div class="row">Not actually working yet</div>
  10. <div class="row spacer"></div>
  11. <form method="post" action="{{ route('preferences.submit') }}">
  12. <div class="row page">
  13. <table class="preferences list" cellspacing="0" cellpadding="10" width="100%">
  14. <tbody>
  15. <tr class="even">
  16. <th colspan="2">Interface</th>
  17. </tr>
  18. <tr class="odd">
  19. <td>Colour scheme</td>
  20. <td class="right">
  21. <select name="theme">
  22. <option value="" selected="">Dark</option>
  23. <option value="light">Light</option>
  24. <option value="oldpunch">Oldpunch</option>
  25. <option value="steam">Steam</option>
  26. <option value="yotsuba">Yotsuba</option>
  27. </select>
  28. </td>
  29. </tr>
  30. <tr class="even">
  31. <td>Show user avatars</td>
  32. <td class="right">
  33. <input name="avatars" type="checkbox" value="1">
  34. </td>
  35. </tr>
  36. <tr class="odd">
  37. <td>Show user backgrounds</td>
  38. <td class="right">
  39. <input name="backgrounds" type="checkbox" value="1">
  40. </td>
  41. </tr>
  42. <tr class="even">
  43. <td>Embed YouTube videos</td>
  44. <td class="right">
  45. <input name="embedYoutube" type="checkbox" value="1">
  46. </td>
  47. </tr>
  48. <tr class="odd">
  49. <td>Embed Rich media links</td>
  50. <td class="right">
  51. <input name="ograph" type="checkbox" value="1">
  52. </td>
  53. </tr>
  54. <tr class="even">
  55. <td>Maximum nested quote depth</td>
  56. <td class="right">
  57. <select name="quote_depth">
  58. <option value="" selected="">4</option>
  59. <option value="3">3</option>
  60. <option value="2">2</option>
  61. <option value="1">1</option>
  62. </select>
  63. </td>
  64. </tr>
  65. </tbody>
  66. </table>
  67. </div>
  68. <div class="row spacer"></div>
  69. <div class="row page">
  70. <table class="preferences list" cellspacing="0" cellpadding="10" width="100%">
  71. <tbody>
  72. <tr class="even">
  73. <th colspan="2">Compatibility</th>
  74. </tr>
  75. <tr class="odd">
  76. <td>Proxy and compress media</td>
  77. <td class="right">
  78. <input name="compression" type="checkbox" value="1">
  79. </td>
  80. </tr>
  81. <tr class="even">
  82. <td>Media compression level</td>
  83. <td class="right">
  84. <select name="compression_level">
  85. <option value="" selected="">Low</option>
  86. <option value="1">Medium</option>
  87. <option value="2">High</option>
  88. <option value="3">Extreme</option>
  89. </select>
  90. </td>
  91. </tr>
  92. <tr class="odd">
  93. <td>Force an encrypted connection</td>
  94. <td class="right">
  95. <input name="encryption" type="checkbox" value="1">
  96. </td>
  97. </tr>
  98. </tbody>
  99. </table>
  100. </div>
  101. <div class="row spacer"></div>
  102. <div class="row page">
  103. <table class="preferences list" cellspacing="0" cellpadding="10" width="100%">
  104. <tbody>
  105. <tr class="even">
  106. <th colspan="2">Oddities</th>
  107. </tr>
  108. <tr class="odd">
  109. <td>Enable page transitions (Internet Explorer Only)</td>
  110. <td class="right">
  111. <input name="transitions" type="checkbox" value="1">
  112. </td>
  113. </tr>
  114. <tr class="even">
  115. <td colspan="2" class="right">
  116. <input type="submit" value="Save">
  117. </td>
  118. </tr>
  119. </tbody>
  120. </table>
  121. </div>
  122. </form>
  123. @endsection
  124. @section('scripts')
  125. <link rel='stylesheet' type='text/css' href='/css/page/preferences.css'/>
  126. @endsection