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.

55 lines
2.3 KiB

7 years ago
  1. <!DOCTYPE html>
  2. <html lang="ko">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>휘파람 보드 초기 설치</title>
  8. <link rel="stylesheet" href="//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSans-kr.css">
  9. <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,100,700">
  10. <link rel="stylesheet" href="../assets/css/admin.min.css">
  11. </head>
  12. <body>
  13. <style>
  14. html,body {height:100%}
  15. </style>
  16. <article id="login-form">
  17. <div class="login-wrap">
  18. <h1 class="login-logo">휘파람 보드 초기화</h1>
  19. <div class="login-panel">
  20. <div class="login-heading">초기화를 진행하기 위해 비밀번호를 입력하세요</div>
  21. <div class="login-body">
  22. <?=form_open(BASE_URL . "/install")?>
  23. <div class="form-group">
  24. <label for="userpass">DB 초기화 비밀번호 입력</label>
  25. <input class="form-control" type="password" name="userpass" value="" id="userpass" autofocus="true" required="required">
  26. </div>
  27. <div class="H20"></div>
  28. <div class="form-group">
  29. <label>생성할 관리자 닉네임</label>
  30. <input class="form-control" name="admin_nick" required value="휘파람">
  31. </div>
  32. <div class="form-group">
  33. <label>생성할 관리자 ID</label>
  34. <input class="form-control" name="admin_id" required value="admin@wheeparam.com">
  35. </div>
  36. <div class="form-group">
  37. <label>생성할 관리자 비밀번호</label>
  38. <input class="form-control" name="admin_pass" required>
  39. </div>
  40. <div class="form-group">
  41. <label>생성할 관리자 E-mail</label>
  42. <input class="form-control" name="admin_email" required value="admin@wheeparam.com">
  43. </div>
  44. <button class="btn btn-block" onclick="return confirm('DB가 초기화 됩니다. 실행하시겠습니까?');">DB초기화 실행</button>
  45. <?=form_close()?>
  46. </div>
  47. </div>
  48. </div>
  49. </article>
  50. </body>
  51. </html>