-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-crews.html
More file actions
126 lines (104 loc) · 5.02 KB
/
Copy pathcreate-crews.html
File metadata and controls
126 lines (104 loc) · 5.02 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>프로젝트 제목</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="top-box">
</div>
<nav>
<div class="logo-container">
<a href="main-page.html"><img src="images/crews-logo.png" alt="메인 로고"></a>
</div>
<ul>
<li onclick="location.href='main-page.html'"><a href="#">내 캘린더</a></li>
<li onclick="location.href='notice-main.html'"><a href="#">공지사항</a></li>
<li onclick="location.href='crew-search.html'"><a href="#">크루 찾기</a></li>
<li onclick="location.href='mypage.html'"><a href="#">나의 활동</a></li>
</ul>
</nav>
</header>
<main>
<aside>
<div class="sidebar">
<div class="user-info">
<img src="images/level-image.png" alt="1레벨 이미지">
<p class="user-name">삼육이</p>
<div class="diamond-info">
<img src="images/diamond-image.png" alt="보석">
<p class="image-number">: <p>126</p></p>
</div>
<div class="logout-button">
<button>로그아웃</button>
</div>
<div class="crew-list">
<h2>내 크루 목록</h2>
<ul>
<li><a href="crew-main.html">코딩크루</a></li>
<li><a href="crew-main.html">크루 2</a></li>
<li><a href="crew-main.html">크루 3</a></li>
</ul>
</div>
</div>
</div>
<div class="introduce-box"></div>
</aside>
<section>
<h1>크루 만들기</h1>
<form>
<p>크루 유형:</p>
<input class="radio-input" type="radio" id="운동" name="crewType" value="운동">
<label class="radio-label" for="운동">운동</label>
<input class="radio-input" type="radio" id="공부" name="crewType" value="공부">
<label class="radio-label" for="공부">공부</label>
<input class="radio-input" type="radio" id="습관" name="crewType" value="습관">
<label class="radio-label" for="습관">습관</label>
<input class="radio-input" type="radio" id="기타" name="crewType" value="기타">
<label class="radio-label" for="기타">기타</label>
<div class="team-and-date">
<div class="team-name">
<p>팀 이름:</p>
<input type="text" id="teamName" name="teamName" required>
</div>
<div class="date-input">
<p>날짜:</p>
<input type="date" id="startDate" name="startDate" required>
<span class="date-separator">~</span>
<input type="date" id="endDate" name="endDate" required>
</div>
</div>
<div class="title-and-status">
<div class="title-input">
<p>공고 제목:</p>
<input type="text" id="advertisementTitle" name="advertisementTitle" required>
</div>
<div class="status-select">
<p>모집 상태:</p>
<select id="recruitmentStatus" name="recruitmentStatus">
<option value="모집중">모집중</option>
<option value="모집 종료">모집 종료</option>
</select>
</div>
</div>
<div class="recruitment-content">
<div class="left-content">
<p>모집 내용:</p>
<textarea id="recruitmentContent" name="recruitmentContent" required rows="6" cols="30"></textarea>
</div>
<!-- <div class="right-content">
<p>크루 소개글:</p>
<textarea id="crewIntroduction" name="crewIntroduction" required rows="6" cols="30"></textarea>
</div> -->
</div>
<div class="submit-button">
<button type="submit">등록</button>
</div>
</form>
</section>
</main>
</body>
</html>