All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 11s
90 lines
2.8 KiB
PHP
90 lines
2.8 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>
|
||
<style type="text/css">
|
||
#formWrap {
|
||
width:700px;
|
||
margin:0 auto;
|
||
color:#555;
|
||
line-height:120%;
|
||
font-size:90%;
|
||
}
|
||
table.formTable{
|
||
width:100%;
|
||
margin:0 auto;
|
||
border-collapse:collapse;
|
||
}
|
||
table.formTable td,table.formTable th{
|
||
border:1px solid #ccc;
|
||
padding:10px;
|
||
}
|
||
table.formTable th{
|
||
width:30%;
|
||
font-weight:normal;
|
||
background:#efefef;
|
||
text-align:left;
|
||
}
|
||
p.error_messe{
|
||
margin:5px 0;
|
||
color:red;
|
||
}
|
||
|
||
@media screen and (max-width:572px) {
|
||
#formWrap {
|
||
width:95%;
|
||
margin:0 auto;
|
||
}
|
||
table.formTable th, table.formTable td {
|
||
width:auto;
|
||
display:block;
|
||
}
|
||
table.formTable th {
|
||
margin-top:5px;
|
||
border-bottom:0;
|
||
}
|
||
input[type="submit"], input[type="reset"], input[type="button"] {
|
||
display:block;
|
||
width:100%;
|
||
height:40px;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body id="" class="">
|
||
<div id="font-scale" class="home">
|
||
@include('layouts.header');
|
||
<!-- ▼ メイン部分 ▼ -->
|
||
<div id="formWrap">
|
||
<h2 class="text-center mt50 mb30">確認画面</h2>
|
||
<p align="center">以下の内容で間違いがなければ、「送信する」ボタンを押してください。</p>
|
||
<form method="POST" action="{{route('swo7_3')}}">
|
||
<table class="formTable table">
|
||
<tbody>
|
||
@foreach($input_data as $value)
|
||
<tr>
|
||
<th>{{ $value[2] }}</th><td>{{ $value[1] }}</td>
|
||
<input name="{{ $value[0] }}" type="hidden" value="{{ $value[1] }}">
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
<p align="center" class="mt50 mb50">
|
||
<button type="submit" class="btn btn-success" name='submit' value="complete">送信する</button>
|
||
<button type="submit" class="btn btn-outline-success" name='back' value="back">前画面に戻る</button>
|
||
</p>
|
||
@csrf
|
||
</form>
|
||
</div>
|
||
<!-- ▲ メイン部分 ▲ -->
|
||
@include('layouts.footer');
|
||
</div>
|
||
</body>
|
||
</html> |