Skip to content

Commit

Permalink
fix: form inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravmak committed Jul 30, 2020
1 parent c37500d commit e8a5316
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions add_song.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,42 +22,40 @@
}
</style>
</head>

<body class="bg-gradient-primary">
<div class="container">
<div class="row justify-content-center">
<div class="box">
<form action="" method="post">
<div class="form-group">
<label>Title
<input type="text" class="form-control">
</label>
<label>Title</label>
<input type="text" class="form-control">
</div>

<div class="form-group">
<label>Artist Name
<input type="text" class="form-control">
</label>
<label>Artist Name</label>
<input type="text" class="form-control">
</div>

<div class="input-group mb-3">
<label>Album Image
<div class="custom-file mt-3">
<label>
Album Image
<div class="custom-file mt-2">
<input type="file" class="custom-file-input" accept="image/*">
<label class="custom-file-label" for="inputGroupFile01">Choose file</label>
</div>
</label>
</div>

<div class="form-group">
<label>Duration
<input type="text" class="form-control">
</label>
<label>Duration</label>
<input type="text" class="form-control">
</div>

<div class="form-group">
<label>Youtube link
<input type="text" class="form-control">
</label>
<label>Youtube link</label>
<input type="text" class="form-control">
</div>

<button class="btn btn-primary" type="button">Insert</button>
Expand Down

0 comments on commit e8a5316

Please sign in to comment.