settings.html 967 B

12345678910111213141516171819202122
  1. <template name="settings">
  2. {{> header}}
  3. <div class="row">
  4. <h1 id="profile-name">{{username}}</h1>
  5. <div class="col-md-4 col-md-offset-4">
  6. <div class="panel panel-primary">
  7. <div class="panel-heading">Basic Info</div>
  8. <div class="panel-body">
  9. <!--h3 class="text text-warning text-center">Unfortunately, there is currently nothing for you to edit.</h3-->
  10. <div class="checkbox">
  11. <input class="checkbox-box" type="checkbox" id="showRating">
  12. <label for="showRating" class="settings-label">
  13. Show your likes/dislikes on your public profile
  14. </label>
  15. </div>
  16. <button class="btn btn-warning btn-block" id="save-settings">Save</button>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. {{> bubbles}}
  22. </template>