diff options
| author | grothedev <grothedev@gmail.com> | 2025-12-28 22:16:11 -0500 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2025-12-28 22:16:11 -0500 |
| commit | 57445d4ccbfe1cb190437c8f6b609fc83723b015 (patch) | |
| tree | 2e4f50e834faceb068502d231ad2c9cc30067f9b /resources/views/home.blade.php | |
had claude code start making this project just to see what happens
Diffstat (limited to 'resources/views/home.blade.php')
| -rw-r--r-- | resources/views/home.blade.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..b5e4a3d --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,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> |
