Skip to content

Commit

Permalink
Code from Mitesh
Browse files Browse the repository at this point in the history
  • Loading branch information
gauravmak committed Jul 28, 2020
0 parents commit 472ddc3
Show file tree
Hide file tree
Showing 15 changed files with 670 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# sb-admin-2
70 changes: 70 additions & 0 deletions add_song.html
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>
10 changes: 10 additions & 0 deletions css/sb-admin-2.min.css

Large diffs are not rendered by default.

76 changes: 76 additions & 0 deletions edit_song.html
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>
Binary file added image/dive.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/main_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/music_logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/shuttle358.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/the_voyage.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 472ddc3

Please sign in to comment.