-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.html
More file actions
86 lines (85 loc) · 4.74 KB
/
main.html
File metadata and controls
86 lines (85 loc) · 4.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>소모임</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container px-4 px-lg-5">
<a class="navbar-brand" href="#"><img id="logo" src="assets/images/logo.png" alt="logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 ms-lg-4">
<li class="nav-item"><a class="nav-link" target="_blank" href="https://ripple-jeep-0d0.notion.site/Spring-5-ctrls-4-165d5efee5f180469705e3fcf7e4e46f">Notion</a></li>
<li class="nav-item"><a class="nav-link" target="_blank" href="https://github.com/daylikezero/ctrls_miniproject">Git</a></li>
</ul>
<button id="logout-btn" class="btn btn-outline-danger ms-auto">로그아웃</button>
</div>
</div>
</nav>
<!-- Header-->
<header class="bg-primary py-4">
<div class="main-header">
<div class="main-texting">
<div class="main-postingbox">
<h4 class="main-title">🌱 모임 만들기</h4>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="title" placeholder="Title">
<label for="floatingInput">소모임명</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="contents" placeholder="Description">
<label for="floatingInput">소개글</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="image" placeholder="Image URL">
<label for="floatingInput">대표이미지</label>
</div>
<div class="input-group mb-3">
<label class="input-group-text" for="inputGroupSelect01">카테고리</label>
<select class="form-select" id="category">
</select>
</div>
<button id="postingbtn" type="button" class="btn btn-success float-end">소모임 등록</button>
</div>
</div>
</div>
</header>
<!-- Section-->
<section class="py-2">
<div class="container px-4 px-lg-5 mt-5">
<div class="col-md-4">
<div class="input-group mb-3">
<select class="form-select" id="categorySearch" aria-label="Example select with button addon">
<option value="">전체</option>
</select>
<button type="button" class="btn btn-secondary" id="categoryBtn">검색</button>
</div>
</div>
<div id="card-container" class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center">
</div>
</div>
</section>
<!-- Footer-->
<footer class="py-5 bg-dark">
<div class="container"><p class="m-0 text-center text-white">Copyright © ctrl+s 2024</p></div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script type="module" src="js/scripts.js"></script>
<script type="module" src="js/main.js"></script>
</body>
</html>