My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

index.html 994B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!doctype html>
  2. <html lang=en>
  3. <head>
  4. <meta charset=utf-8>
  5. <title>Marlin</title>
  6. <link rel="stylesheet" type="text/css" href="marlin.css" />
  7. <script type="text/javascript" src="marlin.js"></script>
  8. </head>
  9. <body>
  10. <div class="tabs">
  11. <div id="logo"></div>
  12. <input class="input" name="tabs" type="radio" id="tab-1" checked="checked"/>
  13. <label class="label" for="tab-1">console</label>
  14. <div class="panel">
  15. <div class="panel-content">
  16. <ul id="serial-output"></ul>
  17. <form id="serial-command-form" autocomplete="off">
  18. <div class="form-wrapper">
  19. <input type="text" id="serial-command">
  20. <input type="submit" value="Send">
  21. </div>
  22. </form>
  23. </div>
  24. </div>
  25. <input class="input" name="tabs" type="radio" id="tab-2"/>
  26. <label class="label" for="tab-2">controls</label>
  27. <div class="panel">
  28. <div class="panel-content">
  29. #controls
  30. </div>
  31. </div>
  32. </div>
  33. </body>
  34. </html>