<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <meta name="csrf-token" content="{{ csrf_token() }}">
    <title>Download</title>
</head>
<body>
<div>
    <form method="post" action="/download-backup/{{$company}}">
        @csrf
        <label>パスワード</label>
        <input type="text" name="password">
        <div>
            <label>
                <input type="checkbox" value="true" name="only_source"> ソースコードのみ
            </label>
        </div>
        <button type="submit">Download</button>
    </form>
    <p style="color: red">@isset($err) {{$err}} @endisset</p>
</div>
</body>
</html>
