27 lines
979 B
HTML
27 lines
979 B
HTML
<!DOCTYPE html>
|
|
<html lang="ja">
|
|
<head>
|
|
{% with subtitle = 'サンプルファイル送信' %}
|
|
{% include '_header.html' %}
|
|
{% endwith %}
|
|
<link href="/static/css/menuStyle.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid text-center background">
|
|
<h1>サンプルファイル送信</h1>
|
|
<br><br>
|
|
<form name="login" class="text-center" method="post" action="/sample/" enctype="multipart/form-data">
|
|
<div class="form-group">
|
|
<label for="file">Choose File.</label>
|
|
<input type="file" name="file" class="form-control-file" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="message">メッセージ</label>
|
|
<input type="text" name="message" class="form-control">
|
|
</div>
|
|
<input type="submit" id="login_button" name="login" class="btn btn-info btn-lg btn_width" id="submit" value="送信">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|