diff options
| author | realtradam <[email protected]> | 2024-06-16 16:49:14 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-06-16 16:49:14 -0400 |
| commit | c72edf37baf307322b49b7c75c59d077dda9bc83 (patch) | |
| tree | adfd5bd8b318c2d0ac6c63c6c81848d6c35dfe1c /src/components/UploadGame.tsx | |
| parent | ee6c193c97e29d1c41a0886b380f54d75bb3120c (diff) | |
| download | malcz.com-c72edf37baf307322b49b7c75c59d077dda9bc83.tar.gz malcz.com-c72edf37baf307322b49b7c75c59d077dda9bc83.zip | |
updated upload
Diffstat (limited to 'src/components/UploadGame.tsx')
| -rw-r--r-- | src/components/UploadGame.tsx | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/src/components/UploadGame.tsx b/src/components/UploadGame.tsx index 690834d..8eaef13 100644 --- a/src/components/UploadGame.tsx +++ b/src/components/UploadGame.tsx @@ -123,32 +123,28 @@ export default function UploadGame () { <option value="pixelated">Pixelated</option> </select> </div> - { /*<div> - <label>Files</label> - <input type="file" multiple name="game_files" /> - </div> */ } <div className="flex flex-col"> - <label>Game Zip</label> - <input type="file" name="zip" /> + <label>Game Zip</label> + <input type="file" name="zip" /> </div> <div className="flex flex-col"> - <label>Card Image</label> - <input type="file" name="card_img" /> + <label>Card Image</label> + <input type="file" name="card_img" /> </div> <div className="flex flex-col"> - <label>Character Image</label> - <input type="file" name="char_img" /> + <label>Character Image</label> + <input type="file" name="char_img" /> </div> <div className="flex flex-col"> - <label>Title Image</label> - <input type="file" name="title_img" /> + <label>Title Image</label> + <input type="file" name="title_img" /> </div> <div className="flex flex-col"> - <label>Status</label> - <select name="status"> - <option value="0">Draft</option> - <option value="1">Published</option> - </select> + <label>Status</label> + <select name="status"> + <option value="0">Draft</option> + <option value="1">Published</option> + </select> </div> <div style={{ boxShadow: 'rgba(255,255,255,.1) 0 1px 0,rgba(0,0,0,.8) 0 1px 7px 0 inset' }} className="p-[5px] w-min h-min bg-stone-800 rounded-[5px]"> <Button width={ 28 } height={ 12 } link={ <button type="submit" className="w-28 h-12 bg-stone-transparent text-stone-50 rounded">Submit</button> }/> |
