register.blade.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. @extends('home.frame')
  2. @section('title', '会员注册')
  3. @section('style')
  4. <link rel="stylesheet" href="{{ asset('css/logio.css') }}">
  5. @stop
  6. @section('banner')
  7. @stop
  8. @section('content')
  9. <div class="logio-div logio-div-h">
  10. <form method="post" id="form_submit">
  11. {{ csrf_field() }}
  12. <div class="txt-center lgoio-href">
  13. <a href="{{ route('login') }}">已有账号?→点我去登录</a>
  14. </div>
  15. <div>
  16. <img src="{{ asset('images/admin/login_top.jpg') }}">
  17. </div>
  18. <div class="logio-center form-input">
  19. <table>
  20. <tr>
  21. <td class="width-100">
  22. <i>*</i><label for="name" id="label_name">会员账号</label>:
  23. </td>
  24. <td>
  25. <input type="text" maxlength="25" placeholder="请设置您的会员账号" id="name" name="name" value="{{ old('name') }}" required="required" autofocus="autofocus" />
  26. </td>
  27. </tr>
  28. <tr>
  29. <td></td>
  30. <td class="padding-b10">
  31. <span class="red" id="error_name">
  32. @if ($errors->has('name'))
  33. {{ $errors->first('name') }}
  34. @endif
  35. &nbsp;
  36. </span>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td>
  41. <i>*</i><label for="password" id="label_password">登录密码</label>:
  42. </td>
  43. <td>
  44. <input type="password" maxlength="16" placeholder="请设置您的登录密码" id="password" name="password" required="required" />
  45. </td>
  46. </tr>
  47. <tr>
  48. <td></td>
  49. <td class="padding-b10">
  50. <span class="red" id="error_password">
  51. @if ($errors->has('password'))
  52. {{ $errors->first('password') }}
  53. @endif
  54. &nbsp;
  55. </span>
  56. </td>
  57. </tr>
  58. <tr>
  59. <td>
  60. <i>*</i><label for="password2" id="label_password2">确认密码</label>:
  61. </td>
  62. <td>
  63. <input type="password" maxlength="16" placeholder="请再次输入登录密码" id="password2" name="password_confirmation" required="required" />
  64. </td>
  65. </tr>
  66. <tr>
  67. <td></td>
  68. <td class="padding-b10">
  69. <span class="red" id="error_password2">
  70. &nbsp;
  71. </span>
  72. </td>
  73. </tr>
  74. <tr>
  75. <td>
  76. <i>*</i><label for="mobile" id="label_mobile">手机号码</label>:
  77. </td>
  78. <td>
  79. <input type="text" maxlength="11" placeholder="请输入您的手机号码" id="mobile" name="mobile" value="{{ old('mobile') }}" required="required" />
  80. </td>
  81. </tr>
  82. <tr>
  83. <td></td>
  84. <td class="padding-b10">
  85. <span class="red" id="error_mobile">
  86. @if ($errors->has('mobile'))
  87. {{ $errors->first('mobile') }}
  88. @endif
  89. &nbsp;
  90. </span>
  91. </td>
  92. </tr>
  93. <tr>
  94. <td>
  95. <i>*</i><label for="captcha" id="label_captcha">验证码</label>:
  96. </td>
  97. <td>
  98. <input class="width-100" maxlength="6" type="text" placeholder="短信验证码" id="captcha" name="captcha" required="required" />
  99. <button id="btn_sendSms" type="button" class="right margin-t5">获取验证码</button>
  100. </td>
  101. </tr>
  102. <tr>
  103. <td></td>
  104. <td class="padding-b10">
  105. <span class="red" id="error_captcha">
  106. @if ($errors->has('captcha'))
  107. {{ $errors->first('captcha') }}
  108. @endif
  109. &nbsp;
  110. </span>
  111. </td>
  112. </tr>
  113. </table>
  114. </div>
  115. <div>
  116. <img src="{{ asset('images/admin/login_bottom.jpg') }}">
  117. </div>
  118. <button id="btn_submit" type="text" class="logio-btn register-btn" value="注册"></button>
  119. </form>
  120. </div>
  121. @stop
  122. @section('javascript')
  123. <script src="{{ asset('js/val_user.js') }}"></script>
  124. @stop