so-manager-dev.com/resources/views/swo7_2.blade.php
Yu Watanabe 2eb7512471
All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 11s
8月4週対応分
2025-08-29 17:34:32 +09:00

90 lines
2.8 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>
<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>