-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-music.html
103 lines (91 loc) · 5.06 KB
/
edit-music.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!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.0">
<title>edit songs</title>
<!-- ! -------------------------------- links -------------------------------- ! -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/boxicons/css/boxicons.min.css">
<link rel="stylesheet" href="public/content/css/edit-songs.css">
</head>
<body>
<!-- ! -------------------------------- aside -------------------------------- ! -->
<aside class="aside">
<ul class="list-unstyled py-3">
<li class="w-100 text-center aside-item d-flex">
<a href="my-musics.html" class="w-100 aside-link">
<i class='bx bxl-tiktok'></i>
</a>
</li>
<li class="w-100 text-center aside-item d-flex">
<a href="" class="w-100 aside-link">
<i class='bx bxs-playlist'></i>
</a>
</li>
<li class="w-100 text-center aside-item d-flex">
<a href="upload-music.html" class="w-100 aside-link">
<i class='bx bx-cloud-upload'></i>
</a>
</li>
</ul>
</aside>
<!-- ! ------------------------------ end aside ------------------------------ ! -->
<!-- ! -------------------------------- wrap --------------------------------- ! -->
<div class="wrap">
<div class="container">
<!-- ! ----------------------------- wrap title ------------------------------ ! -->
<div class="row text-center">
<h1 class="wrap-title">Edit <i class='bx bxl-tiktok bx-tada mx-2'></i> information</h1>
</div>
<!-- ! --------------------------- end wrap title ---------------------------- ! -->
<!-- ! ---------------------------- edit info box ---------------------------- ! -->
<form action="" autocomplete="off">
<div class="row justify-content-center">
<div class="col-8 d-flex justify-content-between">
<div class="col-4">
<label for="song-cover-input" class="upload-song-cover-label">
<img src="" id="song-cover-img" alt="">
<i class='bx bx-image-add'></i>
<input type="file" id="song-cover-input" class="d-none" accept="image/*">
</label>
</div>
<div class="col-7 inputs-container">
<!-- ! -------------------------- singer name input -------------------------- ! -->
<div class="col-12">
<span class="singer-input-title">singer name :</span>
<input type="text" class="form-control singer-input" id="singer-input" placeholder="type your singer name">
<p class="form-text"></p>
</div>
<!-- ! -------------------------- music name input --------------------------- ! -->
<div class="col-12 mt-4">
<span class="music-name-title">music name :</span>
<input type="text" class="form-control music-name-input" id="music-name-input" placeholder="type your music name">
<p class="form-text"></p>
</div>
<!-- ! ---------------------------- submit button ---------------------------- ! -->
<div class="col-12">
<input type="submit" class="submit-info" id="submit-info" value="edit information" disabled>
</div>
</div>
</div>
</div>
</form>
<!-- ! -------------------------- end edit info box -------------------------- ! -->
<!-- ! ------------------------------ text Box ------------------------------- ! -->
<div class="row justify-content-center">
<div class="col-8 text-center" style="z-index: 10;">
<p class="note-text">
<span>Note :</span> You can only change the photo of the music and the name of the singer and the name of the music
</p>
</div>
</div>
<!-- ! ---------------------------- end text box ----------------------------- ! -->
</div>
</div>
<!-- ! ------------------------------ end wrap ------------------------------- ! -->
<script src="public/content/js/edit-music-info.js"></script>
</body>
</html>