so-manager-dev.com/resources/views/swo2_3.blade.php

95 lines
5.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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');
<!-- ▼ メイン部分 ▼ -->
<main role="main" id="" class="">
<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">
<p class="h4">会員情報を入力してください。</p>
<section id="" class="container mt50 mb50">
<form class="row form" action="{{route('swo2_4')}}" method="post">
<input type="hidden" name="_token" value="oEhAfdqtNNAs2vOfjZqveVaH3G1fF62yb8qJIshV" >
<div class="col-12 col-md-3 offset-0 offset-md-1">
<label for="user_name" class="required">お名前</label>
</div>
<div class="col-12 col-lg-6 mb10">
<input type="text" class="form-control form-control-lg" name="user_name" id="user_name" value="" placeholder="自転車 太郎">
</div>
<div class="col-12 col-md-3 offset-0 offset-md-1">
<label for="user_phonetic" class="required">フリガナ</label>
</div>
<div class="col-12 col-lg-6 mb10">
<input type="text" class="form-control form-control-lg" name="user_phonetic" id="user_phonetic" value="" placeholder="ジテンシャ タロウ">
</div>
<div class="col-12 col-md-3 offset-0 offset-md-1">
<label for="user_homephone" class="required">電話番号(必須)</label>
</div>
<div class="col-12 col-lg-6 mb10">
<div class="row justify-content-between col-12 m-0 p-0">
<input type="text" maxlength="5" name="user_homephone[]" value="" class="form-control form-control-lg check_key_int col-3"/>
<div class="align-self-center"></div>
<input type="text" maxlength="4" name="user_homephone[]" value="" class="form-control form-control-lg check_key_int col-3"/>
<div class="align-self-center"></div>
<input type="text" maxlength="4" name="user_homephone[]" value="" class="form-control form-control-lg check_key_int col-3"/>
</div>
</div>
<div class="col-12 col-md-3 offset-0 offset-md-1">
<label for="user_mobile">予備電話番号(任意)</label>
</div>
<div class="col-12 col-lg-6 mb10">
<div class="row justify-content-between col-12 m-0 p-0">
<input type="text" maxlength="5" name="user_mobile[]" value="" class="form-control form-control-lg check_key_int col-3"/>
<div class="align-self-center"></div>
<input type="text" maxlength="4" name="user_mobile[]" value="" class="form-control form-control-lg check_key_int col-3"/>
<div class="align-self-center"></div>
<input type="text" maxlength="4" name="user_mobile[]" value="" class="form-control form-control-lg check_key_int col-3"/>
</div>
</div>
<div class="col-12 col-md-3 offset-0 offset-md-1">
<label for="user_primemail" class="required">メールアドレス</label>
</div>
<div class="col-12 col-lg-6 mb10">
<input type="text" class="form-control form-control-lg" readonly="readonly" id="user_primemail" value="watanabe@s-force.co.jp" name="user_primemail" placeholder="name@example.com">
</div>
<div class="col-12 col-md-3 offset-0 offset-md-1">
<label for="user_primemail2" class="required">メールアドレスの確認</label>
</div>
<div class="col-12 col-lg-6 mb10">
<input type="text" class="form-control form-control-lg" readonly="readonly" id="user_primemail2" name="user_primemail_confirmation" value="watanabe@s-force.co.jp" placeholder="name@example.com">
</div>
<div class="col-12 col-md-6 offset-0 offset-md-3 mt10">
<a href="{{route('swo2_4')}}" class="btn btn-block btn-lg btn-success">入力確認</a>
</div>
</form>
</section>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- ▲ メイン部分 ▲ -->
@include('layouts.info');
@include('layouts.footer');
</div>
</body>
</html>