forked from 2022-Harmony/NewsCommunity-fFinal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.html
119 lines (111 loc) · 5.29 KB
/
support.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!--my Css files-->
<link rel="stylesheet" type="text/css" href="static/reset.css">
<link rel="stylesheet" type="text/css" href="static/base.css">
<link rel="stylesheet" type="text/css" href="static/support.css">
<!-- Font Awesome CSS -->
<script src="https://kit.fontawesome.com/f6788aacd4.js" crossorigin="anonymous"></script>
<!-- Googole Font -->
<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=Rubik+Mono+One&family=Do+Hyeon&family=IBM+Plex+Sans+KR:wght@300;400;500&display=swap"
rel="stylesheet">
<!-- Bulma CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<!--custom file-->
<script type="text/javascript" src="/static/js/support.js"></script>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./index.html">
<small class="navbar_team">TEAM.</small>
<div class="navbar_text">harmony2</div>
</a>
</div>
<div class="navbar_icon">
{% if status == False %}
<a class="login_icon" onclick="window.location.href = './login.html'"><i class="fa-solid fa-arrow-right-to-bracket"></i></a>
{% else %}
<a class="profile_icon" href="./profile.html"><i class="fa-regular fa-user"></i></a>
<a class="logout_icon" onclick="sign_out()"><i class="fa-solid fa-right-from-bracket"
aria-hidden="true"></i></a>
{% endif %}
</div>
</nav>
<div class="wraper">
<div class="main">
<div class="card">
<div class="card-header">
문의/건의
</div>
<div class="card-body">
질문 / 의견 / 건의 / 버그 제보 글을 작성해주세요
</div>
</div>
<table class="table table-borderless">
<thead class="table table-sm">
<tr style="background-color: #f7f7f7">
<th scope="col">번호</th>
<th scope="col">제목</th>
<th scope="col">이름</th>
<th scope="col">날짜</th>
</tr>
</thead>
<tbody id="table_body">
<!--여기에 삽입-->
<tr class="tr_title" id="open_it">
<th scope="row"></th>
<td class="name">
<span>게시물이 없습니다. 게시물을 작성해주세요.</span>
</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="writing_button_div">
<button type="button" class="writing_button btn btn-light" id="writing_toggle" onclick="toggle_writing()">글쓰기
</button>
</div>
</div>
<div class="submit">
<div class="card submit_card" id="sumbit_toggle">
<div class="input-group mb-3">
<span class="input-group-text" style="background-color: #f7f7f7">제 목</span>
<input id="input_title" type="text" class="form-control" aria-label="Sizing example input"
aria-describedby="inputGroup-sizing-default">
</div>
<div class="input-group mb-3">
<span class="input-group-text" style="background-color: #f7f7f7">이 름</span>
<input id="input_name" type="text" class="form-control" aria-label="Sizing example input"
aria-describedby="inputGroup-sizing-default">
</div>
<div class="input-group mb-3">
<span class="input-group-text" style="background-color: #f7f7f7" id="inputGroup-sizing-default">Email</span>
<input type="text" class="form-control" aria-label="Sizing example input"
aria-describedby="inputGroup-sizing-default">
</div>
<div class="mb-3">
<label class="form-label">문의 내역</label>
<textarea id="input_text" class="form-control" rows="3"></textarea>
</div>
<div class="content_btn_div">
<div class="content_btn_sub_div">
<button onclick="toggle_writing()" type="button" class="cancle_btn btn btn-light">취소</button>
<button onclick="submit_content()" type="button" class="submit_btn btn btn-light">제출</button>
</div>
</div>
</div>
</div>
</body>
</html>