blob: b5e4a3da7ba1a17288b9c34db951bd61667b1a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
@extends('template')
@section('scripts')
<script type = "module" src = "/js/main.js"></script>
@endsection
@section('content')
<section>
<h5>Shared Files</h5>
<p>Welcome</p>
<center> . . . </center>
</section>
<section id = "fileupload-js">
</section>
<section id = "fileupload-nojs">
<div class = "widget" >
<h4>File Upload</h4>
<h6><a href = "/f">Browse Uploaded Files</a></h6>
<form action="/f" method="POST" enctype="multipart/form-data">
@csrf
@error('f') {{ $message }} @enderror
<input multiple name="f[]" type="file">
<input hidden name = "response_format" value = "html" />
<button type = "submit">Upload</button>
</form>
</div>
</section>
<footer>
<p>Last updated December 28th, 2025</p>
</footer>
@endsection
</html>
|