All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
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.

28 lines
1.2 KiB

1 year ago
  1. <form onsubmit="event.preventDefault()">
  2. <div class="form-group">
  3. <input type="checkbox" name="crt" {{checked crt}}/>
  4. <label>Use oldschool CRT styling</label>
  5. </div>
  6. <div class="form-group">
  7. <input type="checkbox" name="terminal" {{checked terminal}}/>
  8. <label>Show Terminal</label>
  9. </div>
  10. <div class="form-group">
  11. <input type="checkbox" name="startup" {{checked startup}} {{#if terminal}}{{else}}disabled{{/if}}/>
  12. <label>Show Startup</label>
  13. <p class="notes">Requires Show Terminal</p>
  14. </div>
  15. <div class="form-group">
  16. <input type="checkbox" name="greeting" {{checked greeting}} {{#if terminal}}{{else}}disabled{{/if}}/>
  17. <label>Show Greeting</label>
  18. <p class="notes">Requires Show Terminal</p>
  19. </div>
  20. <div class="form-group">
  21. <input type="checkbox" name="instructions" {{checked instructions}} {{#if terminal}}{{else}}disabled{{/if}}/>
  22. <label>Show Instructions</label>
  23. <p class="notes">Requires Show Terminal</p>
  24. </div>
  25. <div class="form-group">
  26. <input type="checkbox" name="info" {{checked info}}/>
  27. <label>Show Gadget Information</label>
  28. </div>
  29. </form>