-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 472ddc3
Showing
15 changed files
with
670 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# sb-admin-2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
<title>Add Song</title> | ||
|
||
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" rel="stylesheet"> | ||
<link href="css/sb-admin-2.min.css" rel="stylesheet"> | ||
<style> | ||
.box { | ||
border: 1px solid black; | ||
border-radius: 20px; | ||
margin: 50px 0px 0px 0px; | ||
background-color: white; | ||
padding: 30px; | ||
} | ||
</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> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>Artist Name | ||
<input type="text" class="form-control"> | ||
</label> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<label>Album Image | ||
<div class="custom-file mt-3"> | ||
<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> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>Youtube link | ||
<input type="text" class="form-control"> | ||
</label> | ||
</div> | ||
|
||
<button class="btn btn-primary" type="button">Insert</button> | ||
<a href="index.html" class="btn btn-danger back-btn">Back</a> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
<title>Edit Song</title> | ||
|
||
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" rel="stylesheet"> | ||
<link href="css/sb-admin-2.min.css" rel="stylesheet"> | ||
<style> | ||
.box { | ||
border: 1px solid black; | ||
border-radius: 20px; | ||
margin: 50px 0px 0px 0px; | ||
background-color: white; | ||
padding: 30px; | ||
} | ||
.back-btn { | ||
color: white; | ||
text-decoration: none; | ||
} | ||
</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 " value="Daydream"> | ||
</label> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>Artist Name | ||
<input type="text" class="form-control " value="Tycho"> | ||
</label> | ||
</div> | ||
|
||
<div class="input-group mb-3"> | ||
<label>Album Image | ||
<div class="custom-file mt-3"> | ||
<input type="file" class="custom-file-input"> | ||
<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 " value="05:34"> | ||
</label> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<label>Youtube link | ||
<input type="text" class="form-control" value="https://www.youtube.com/watch?v=UFr9StkVwTk"> | ||
</label> | ||
</div> | ||
|
||
<button type="button" class="btn btn-primary">Update</button> | ||
<a href="index.html" class="btn btn-danger back-btn">Back</a> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.