-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodify_artist.html
49 lines (46 loc) · 1.83 KB
/
modify_artist.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Feelin' admin - modify artist</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h2>
<a href="index.html">Feenlin' admin</a>
</h2>
<ul class="menu">
<li id="clicked"><a href="artist.html">아티스트 관리</a></li>
</ul>
<div id="profile-wrapper">
<p>Username</p>
<input type="submit" value="Logout">
</div>
</nav>
<section>
<h2>아티스트 수정하기</h2>
<form action="artist_list.html" method="post">
<table id="add-artist-wrapper">
<tr><td class="header">ID</td></tr>
<tr><td><input type="text" class="info" name="id" readonly></td></tr>
<tr><td class="header">아티스트명</td></tr>
<tr><td><input type="text" class="info" name="artist_name" required></td></tr>
<tr><td class="header">멤버</td></tr>
<tr><td><input type="text" class="info" name="member"></td></tr>
<tr><td class="header">사진</td></tr>
<tr><td><input type="url" class="info" name="image_link"></td></tr>
<tr><td class="header">인스타 링크</td></tr>
<tr><td><input type="url" class="info" name="insta_link"></td></tr>
</table>
<div id="buttons-wrapper">
<input type="button" class="button" value="취소하기" onclick="location.href='view_artist.html'">
<input type="submit" class="button" value="저장하기">
</div>
</form>
</section>
</body>
</html>