You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>게시판 - 글쓰기</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<strong>택시 글쓰기</strong>
|
|
</header>
|
|
<div class="container">
|
|
<form action="" method="POST">
|
|
{% csrf_token %}
|
|
<div class="form-group row">
|
|
<label for="inputTitle" class="col-sm-2 col-form-label"><strong>제목</strong></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="title" class="form-control" id="inputTitle">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="inputAuthor" class="col-sm-2 col-form-label"><strong>작성자</strong></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="author" class="form-control" id="inputAuthor">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label for="inputContent" class="col-sm-2 col-form-label"><strong>내용</strong></label>
|
|
<div class="col-sm-10">
|
|
<textarea type="text" name="content" class="form-control" id="inputContent"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-auto mr-auto"></div>
|
|
<div class="col-auto">
|
|
<input class="btn btn-primary" type="submit" role="button" value="글쓰기">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|