info.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. ?>
  3. <html>
  4. <head>
  5. <meta name="apple-mobile-web-app-capable" content="yes" />
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
  8. <link rel="stylesheet" href="./script/tocas/tocas.css">
  9. <script src="./script/jquery.min.js"></script>
  10. <title>vAOB Installer</title>
  11. <style type="text/css">
  12. .segment {
  13. max-width: 300px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="ts fluid basic link big menu">
  19. <div class="ts very narrow container">
  20. <a href="#!" class="item">vArOZ Installer</a>
  21. </div>
  22. </div>
  23. <div class="ts padded horizontally fitted fluid slate">
  24. <div class="ts very narrow container">
  25. <h1 class="ts header">
  26. System information
  27. <div class="sub header">Please enter the basic server information here.</div>
  28. </h1>
  29. </div>
  30. </div>
  31. <div class="ts very narrow container">
  32. <br>
  33. <form class="ts relaxed form" action="wconfig.php" method="POST">
  34. <div class="field">
  35. <label>Server Name (FQDN)</label>
  36. <input name="FQDN" type="name">
  37. <small>Server name must only includes alphabets, hyphen, underscore</small>
  38. </div>
  39. <div class="field">
  40. <label>Administrator name</label>
  41. <input name="admin_name" type="name">
  42. <small>Username must only contains alphabets</small>
  43. </div>
  44. <div class="field">
  45. <label>Administrator password</label>
  46. <input name="admin_pwd" type="password">
  47. <small>Password must only contains alphabets</small>
  48. </div>
  49. <input type="hidden" name="step" value="1">
  50. <button class="ts fluid primary button" type="submit">Next</button>
  51. </form>
  52. </div>
  53. </body>
  54. </html>