1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- ?>
- <html>
- <head>
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta charset="UTF-8">
- <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
- <link rel="stylesheet" href="./script/tocas/tocas.css">
- <script src="./script/jquery.min.js"></script>
- <title>vAOB Installer</title>
- <style type="text/css">
- .segment {
- max-width: 300px;
- }
- </style>
- </head>
- <body>
- <div class="ts fluid basic link big menu">
- <div class="ts very narrow container">
- <a href="#!" class="item">vArOZ Installer</a>
- </div>
- </div>
- <div class="ts padded horizontally fitted fluid slate">
- <div class="ts very narrow container">
- <h1 class="ts header">
- System information
- <div class="sub header">Please enter the basic server information here.</div>
- </h1>
- </div>
- </div>
- <div class="ts very narrow container">
- <br>
- <form class="ts relaxed form" action="wconfig.php" method="POST">
- <div class="field">
- <label>Server Name (FQDN)</label>
- <input name="FQDN" type="name">
- <small>Server name must only includes alphabets, hyphen, underscore</small>
- </div>
- <div class="field">
- <label>Administrator name</label>
- <input name="admin_name" type="name">
- <small>Username must only contains alphabets</small>
- </div>
- <div class="field">
- <label>Administrator password</label>
- <input name="admin_pwd" type="password">
- <small>Password must only contains alphabets</small>
- </div>
- <input type="hidden" name="step" value="1">
- <button class="ts fluid primary button" type="submit">Next</button>
- </form>
- </div>
- </body>
- </html>
|