All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 12s
71 lines
4.0 KiB
PHP
71 lines
4.0 KiB
PHP
<!doctype html>
|
||
<html lang="ja">
|
||
<head>
|
||
<title>|So-Manager</title>
|
||
<meta charset="utf-8">
|
||
<link rel="icon" href="assets/img/favicon.ico">
|
||
<link href="https://cdnjs.cloudflare.com/ajax/libs/typicons/2.0.9/typicons.css" rel="stylesheet">
|
||
<link href="https://fonts.googleapis.com/earlyaccess/roundedmplus1c.css" rel="stylesheet" />
|
||
<link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||
<link href="assets/css/style.css" rel="stylesheet">
|
||
<script src="assets/js/ie-emulation-modes-warning.js"></script>
|
||
</head>
|
||
<body id="" class="">
|
||
<div id="font-scale" class="home">
|
||
@include('layouts.header');
|
||
<!-- ▼ メイン部分 ▼ -->
|
||
<section id="" class="container mt20 mb20">
|
||
<div class="row">
|
||
<div class="col-12 col-lg-10 offset-0 offset-lg-1 mt20 mb20">
|
||
<div class="card border-success">
|
||
<div class="card-header border-success">
|
||
<h5 class="card-title text-success">パスワードの再設定</h5>
|
||
</div>
|
||
<div class="card-body mt30">
|
||
<form class="row form" action="{{route('swo8_3')}}" method="post">
|
||
<input type="hidden" name="_token" value="KyErVdH3giV3UrqRiP3COWGRAYkdJzeU3sJe1hDH">
|
||
<div class="col-12 col-lg-3 text-lg-center offset-0 offset-lg-1">
|
||
<label for="user_primemail">メールアドレス</label>
|
||
</div>
|
||
<div class="col-12 col-lg-7 mb10">
|
||
<input type="email" name="email" class="form-control form-control-lg" placeholder="info@so-manager.com" value="{{ old('email') }}" />
|
||
</div>
|
||
<div class="col-12 col-lg-3 text-lg-center offset-0 offset-lg-1">
|
||
<label>電話番号</label>
|
||
</div>
|
||
<div class="col-12 col-lg-7 mb10">
|
||
<div class="row justify-content-between col-12 m-0 p-0">
|
||
<input type="text" maxlength="5" name="phone[]" value="{{ old('phone.0') }}" class="form-control form-control-lg check_key_int col-3"/>
|
||
<div class="align-self-center">ー</div>
|
||
<input type="text" maxlength="4" name="phone[]" value="{{ old('phone.1') }}" class="form-control form-control-lg check_key_int col-3"/>
|
||
<div class="align-self-center">ー</div>
|
||
<input type="text" maxlength="4" name="phone[]" value="{{ old('phone.2') }}" class="form-control form-control-lg check_key_int col-3"/>
|
||
</div>
|
||
</div>
|
||
<div class="col-12 col-lg-10 text-lg-center offset-0 offset-lg-1 mt30 mb20">
|
||
@if ($errors->has('email')) <p style="color: red;">{{ $errors->first('email') }}</p><br /> @endif
|
||
@if ($errors->has('phone.*')) <p style="color: red;">{{ $errors->first('phone.*') }}</p><br /> @endif
|
||
@if ($errors->has('nodata')) <p style="color: red;">{{ $errors->first('nodata') }}</p><br /> @endif
|
||
<p>会員情報の確認を行います。<br>
|
||
会員情報の登録を行った際のメールアドレスと自宅/携帯電話番号を入力して<br class="pc">「送信する」ボタンをクリックしてください。<br>
|
||
※ご登録のメールアドレスに新たなパスワードをお送りします。
|
||
</p>
|
||
</div>
|
||
<div class="col-12 col-lg-6 text-lg-center offset-0 offset-lg-3 mb50">
|
||
<button type="submit" class="btn btn-block btn-lg btn-outline-success">送信する</button>
|
||
<a href="{{route('swo8_1')}}" class="btn btn-block btn-lg btn-outline-success">戻る</a>
|
||
</div>
|
||
@csrf
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
<!-- ▲ メイン部分 ▲ -->
|
||
@include('layouts.info');
|
||
@include('layouts.footer');
|
||
</div>
|
||
</body>
|
||
</html>
|