Fixing layouts
All checks were successful
Music Collection CI Workflow / test (./backend) (push) Successful in 22s
Music Collection CI Workflow / test (./frontend) (push) Successful in 19s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/msuic-collection-backend, ./backend) (push) Successful in 48s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m12s
Music Collection CI Workflow / deploy (push) Successful in 22s

This commit is contained in:
Phill Pover 2025-04-05 10:09:54 +01:00
parent d1af7b727e
commit de19903ec1

View File

@ -39,6 +39,7 @@ export default function Page() {
<th>Title</th> <th>Title</th>
<th>Artist</th> <th>Artist</th>
<th>Genre</th> <th>Genre</th>
<th>Controls</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -57,6 +58,7 @@ export default function Page() {
<td> <td>
{album.genre} {album.genre}
</td> </td>
<td></td>
</tr> </tr>
))} ))}
</tbody> </tbody>
@ -64,13 +66,13 @@ export default function Page() {
<form onSubmit={onSubmit}> <form onSubmit={onSubmit}>
<div className="row"> <div className="row">
<div className="six columns"> <div className="six columns">
<label for="album-title">Album Title</label><input type="text" name="title" id="album-title" /> <label htmlFor="album-title">Album Title</label><input type="text" name="title" id="album-title" />
</div> </div>
<div className="six columns"> <div className="six columns">
<label for="album-artist">Artist</label><input type="text" name="artist" id="album-artist" /> <label htmlFor="album-artist">Artist</label><input type="text" name="artist" id="album-artist" />
</div> </div>
<div className="six columns"> <div className="six columns">
<label for="album-genre">Genre</label><input type="text" name="genre" id="album-genre" /> <label htmlFor="album-genre">Genre</label><input type="text" name="genre" id="album-genre" />
</div> </div>
<div className="six columns"> <div className="six columns">
<button type="submit">Create</button> <button type="submit">Create</button>