forked from Moonhokyun/Frontro_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.html
68 lines (64 loc) · 3 KB
/
upload.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
<!DOCTYPE html>
<html lang="ko">
<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">
<link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style/k_modules.css">
<link rel="stylesheet" href="style/upload.css">
<link rel="shortcut icon" href="./src/favicon.ico">
<title>upload</title>
<script defer src="js/upload.js"></script>
</head>
<body>
<div class="container">
<header class="nav">
<img src="src/png/icon-arrow-left.png" alt="뒤로가기" class="back-btn">
<button type="button" id="submit-btn" class="Ms-disabled-button LMbutton-font">업로드</button>
</header>
<section class="post-section">
<h1 class="sr-only">게시물 업로드하기</h1>
<div class="profile-container">
<img class="profile-pic" src="src/png/Ellipse-1.png" alt="내 프로필 이미지">
</div>
<form class="post-content">
<textarea cols="30" rows="10" placeholder="게시글 입력하기..." class="upload-txt" onkeyup="resize(this)"
onkeydown="resize(this)"></textarea>
<!-- <img src="src/png/post-img-example.png" alt="업로드 할 이미지" class="picture">
<button class="img-cancle-btn">
<img src="src/png/x.png" alt="사진 업로드 취소 버튼">
</button> -->
<!-- 이미지 3장 선택시 -->
<ul class="prev-img">
<!-- <li>
<img src="src/png/upload-photo-small.png" alt="업로드 할 이미지1">
<button class="img-cancel-btn">
<img src="src/png/x.png" alt="사진 업로드 취소 버튼">
</button>
</li>
<li>
<img src="src/png/upload-photo-small.png" alt="업로드 할 이미지2">
<button class="img-cancel-btn">
<img src="src/png/x.png" alt="사진 업로드 취소 버튼">
</button>
</li>
<li>
<img src="src/png/upload-photo-small.png" alt="업로드 할 이미지3">
<button class="img-cancel-btn">
<img src="src/png/x.png" alt="사진 업로드 취소 버튼">
</button>
</li> -->
</ul>
</form>
</section>
<form method="post">
<label for="real-input">
<img class="btn-upload" src="src/png/upload-file.png" alt="사진 업로드하기">
</label>
<input type="file" id="real-input" class="image_inputType_file" accept="img/*" onchange="loadFile(this)"
required multiple>
</form>
</div>
</body>
</html>