Skip to content

Commit eda2a73

Browse files
committed
main app templates init
1 parent 0489658 commit eda2a73

4 files changed

Lines changed: 151 additions & 0 deletions

File tree

‎.gitignore‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.pyc
2+
__pycache__
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<html lang="ko">
2+
<head>
3+
<meta charset="UTF-8">
4+
5+
<!-- Boot strap -->
6+
<!-- 합쳐지고 최소화된 최신 CSS -->
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
8+
<!-- 부가적인 테마 -->
9+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
10+
<!-- 합쳐지고 최소화된 최신 자바스크립트 -->
11+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
12+
13+
<style>
14+
.content{
15+
height: 75%;
16+
text-align: center;
17+
}
18+
.panel-footer{
19+
height:10%;
20+
color:gray;
21+
}
22+
</style>
23+
24+
<title>실전 프로젝트</title>
25+
</head>
26+
<body>
27+
<div class="container">
28+
<div class="header">
29+
<div class="page-header">
30+
<h1>실전 프로젝트 해결하기 <small>with Django</small></h1>
31+
</div>
32+
</div>
33+
<div class="content">
34+
<h2>에러가 발생했어요 :'(</h2>
35+
<!-- 에러내용 시작 -->
36+
37+
<!-- 에러내용 끝 -->
38+
</div>
39+
<div class="panel-footer">
40+
실전예제로 배우는 Django. Practice Project
41+
</div>
42+
</div>
43+
</body>
44+
</html>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<html lang="ko">
2+
<head>
3+
<meta charset="UTF-8">
4+
5+
<!-- Boot strap -->
6+
<!-- 합쳐지고 최소화된 최신 CSS -->
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
8+
<!-- 부가적인 테마 -->
9+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
10+
<!-- 합쳐지고 최소화된 최신 자바스크립트 -->
11+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
12+
13+
<style>
14+
.content{
15+
height: 75%;
16+
padding:10px;
17+
}
18+
.panel-footer{
19+
height:10%;
20+
color:gray;
21+
}
22+
.fileListDIv{
23+
padding:15px;
24+
}
25+
.fileName{
26+
font-size: 18px;
27+
}
28+
</style>
29+
30+
<title>실전 프로젝트</title>
31+
</head>
32+
<body>
33+
<div class="container">
34+
<div class="header">
35+
<div class="page-header">
36+
<h1>실전 프로젝트 해결하기 <small>with Django</small></h1>
37+
</div>
38+
</div>
39+
<div class="content">
40+
<h3>업로드된 파일 목록 <small><a>파일 업로드 하기</a><small></h3>
41+
<div class="fileListDIv">
42+
<ul>
43+
<li class="fileName"> File Name <small style="font-size:12px; margin-left:5px;">(2019/09/19 17:31:23)<small></span></li>
44+
</ul>
45+
</div>
46+
</div>
47+
<div class="panel-footer">
48+
실전예제로 배우는 Django. Practice Project
49+
</div>
50+
</div>
51+
</body>
52+
</html>
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<html lang="ko">
2+
<head>
3+
<meta charset="UTF-8">
4+
5+
<!-- Boot strap -->
6+
<!-- 합쳐지고 최소화된 최신 CSS -->
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
8+
<!-- 부가적인 테마 -->
9+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
10+
<!-- 합쳐지고 최소화된 최신 자바스크립트 -->
11+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
12+
13+
<style>
14+
.content{
15+
height: 75%;
16+
}
17+
.panel-footer{
18+
height:10%;
19+
color:gray;
20+
}
21+
</style>
22+
23+
<title>실전 프로젝트</title>
24+
</head>
25+
<body>
26+
<div class="container">
27+
<div class="header">
28+
<div class="page-header">
29+
<h1>실전 프로젝트 해결하기 <small>with Django</small></h1>
30+
</div>
31+
</div>
32+
<div class="content">
33+
<div class="signinDiv">
34+
<form action="" method="POST">{% csrf_token %}
35+
<div class="input-group">
36+
<span class="input-group-addon" id="basic-addon1" name='loginEmail'>이메일</span>
37+
<input type="email" class="form-control" placeholder="이메일을 적어주세요." style="width: 50%">
38+
</div><br>
39+
<div class="input-group">
40+
<span class="input-group-addon" id="basic-addon1" name='loginPW'>비밀번호</span>
41+
<input type="password" class="form-control" placeholder="비밀번호를 적어주세요." style="width: 50%">
42+
</div><br>
43+
<input type="submit" class="btn btn-success btn-lg" value="로그인">
44+
</form>
45+
<a href="">회원가입하기</a>
46+
</div>
47+
</div>
48+
<div class="panel-footer">
49+
실전예제로 배우는 Django. Practice Project
50+
</div>
51+
</div>
52+
</body>
53+
</html>

0 commit comments

Comments
 (0)