forget.blade.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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>
  13. <img src="{{ asset('images/admin/login_top.jpg') }}">
  14. </div>
  15. <div class="logio-center form-input">
  16. <table>
  17. <tr>
  18. <td class="width-100">
  19. <i>*</i><label for="name" id="label_name">会员账号</label>:
  20. </td>
  21. <td>
  22. <input type="text" maxlength="25" placeholder="请输入您的会员账号" id="name" name="name" value="{{ old('name') }}" required="required" autofocus="autofocus" />
  23. </td>
  24. </tr>
  25. <tr>
  26. <td></td>
  27. <td class="padding-b10">
  28. <span class="red" id="error_name">
  29. @if ($errors->has('name'))
  30. {{ $errors->first('name') }}
  31. @endif
  32. &nbsp;
  33. </span>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td>
  38. <i>*</i><label for="mobile" id="label_mobile">手机号码</label>:
  39. </td>
  40. <td>
  41. <input type="text" placeholder="根据会员账号返回" id="mobile" name="mobile" disabled="disabled" />
  42. </td>
  43. </tr>
  44. <tr>
  45. <td></td>
  46. <td class="padding-b10">&nbsp;</td>
  47. </tr>
  48. <tr>
  49. <td>
  50. <i>*</i><label for="captcha" id="label_captcha">验证码</label>:
  51. </td>
  52. <td>
  53. <input class="width-100" maxlength="6" type="text" placeholder="短信验证码" id="captcha" name="captcha" required="required" />
  54. <button id="btn_sendSms" type="button" class="right margin-t5">获取验证码</button>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td></td>
  59. <td class="padding-b10">
  60. <span class="red" id="error_captcha">
  61. @if ($errors->has('captcha'))
  62. {{ $errors->first('captcha') }}
  63. @endif
  64. &nbsp;
  65. </span>
  66. </td>
  67. </tr>
  68. <tr>
  69. <td>
  70. <i>*</i><label for="password" id="label_password">登录密码</label>:
  71. </td>
  72. <td>
  73. <input type="password" maxlength="16" placeholder="请设置您的登录密码" id="password" name="password" required="required" />
  74. </td>
  75. </tr>
  76. <tr>
  77. <td></td>
  78. <td class="padding-b10">
  79. <span class="red" id="error_password">
  80. @if ($errors->has('password'))
  81. {{ $errors->first('password') }}
  82. @endif
  83. &nbsp;
  84. </span>
  85. </td>
  86. </tr>
  87. <tr>
  88. <td>
  89. <i>*</i><label for="password2" id="label_password2">确认密码</label>:
  90. </td>
  91. <td>
  92. <input type="password" maxlength="16" placeholder="请再次输入登录密码" id="password2" name="password_confirmation" required="required" />
  93. </td>
  94. </tr>
  95. <tr>
  96. <td></td>
  97. <td class="padding-b10">
  98. <span class="red" id="error_password2">
  99. &nbsp;
  100. </span>
  101. </td>
  102. </tr>
  103. </table>
  104. </div>
  105. <div>
  106. <img src="{{ asset('images/admin/login_bottom.jpg') }}">
  107. </div>
  108. <button id="btn_submit" type="text" class="logio-btn forget-btn" value="重置密码"></button>
  109. </form>
  110. </div>
  111. @stop
  112. @section('javascript')
  113. <script src="{{ asset('js/val_user.js') }}"></script>
  114. @stop