Skip to content

Commit

Permalink
[UPDATE] 푸터, DB북마크 길이제한 해제, 사용자가이드 링크 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyoTaek-Jang committed Feb 17, 2021
1 parent cee3314 commit 31d22ae
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 223 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
사용자피드백.md
etc/
index.html
NC_JS.md

# Logs
logs
Expand Down
92 changes: 0 additions & 92 deletions NC_JS.md

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ OurToDo는 PC, 크롬을 기준으로 제작되었습니다.
- Login 기능에서 Enter를 통한 submit 구현
- Login Placehold 수정
- 북마크 URL 자동 http 프로토콜 추가 기능 버그 업데이트
- db 북마크 링크 길이 제한 해제
- 푸터 작업을 통한 사용자 문의사항 창구 개설
128 changes: 0 additions & 128 deletions index.html

This file was deleted.

7 changes: 7 additions & 0 deletions myapp/public/css/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,10 @@
font-size: 12px;
margin: 0;
}

.footer {
font-size: 12px;
color: rgb(230, 230, 230);
padding-top: 30px;
font-family: "맑은고딕", "Malgun Gothic", serif;
}
7 changes: 7 additions & 0 deletions myapp/public/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,13 @@
display: none;
}

.main-welcome p {
font-size: 12px;
color: rgb(230, 230, 230);
padding-top: 30px;
font-family: "맑은고딕", "Malgun Gothic", serif;
}

.main-enterName {
box-sizing: border-box;
padding-top: 120px;
Expand Down
3 changes: 2 additions & 1 deletion myapp/public/javascripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ startButton.addEventListener("click", (e) => {
});
const guitdeButton = document.getElementById("start-guide");
guitdeButton.addEventListener("click", (e) => {
location.href = "https://github.com/HyoTaek-Jang/Our-To-Do";
location.href =
"https://github.com/HyoTaek-Jang/Our-To-Do/blob/master/%EC%82%AC%EC%9A%A9%EC%9E%90%EA%B0%80%EC%9D%B4%EB%93%9C.md";
});
3 changes: 3 additions & 0 deletions myapp/views/login.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
</div>
</div>
</div>
<p class="footer">
@hyotaek-jang | 문의사항 및 버그제보 : [email protected]
</p>
</div>
</body>
</html>
Expand Down
7 changes: 6 additions & 1 deletion myapp/views/main.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,12 @@

<div class="main-clock">11:00</div>

<div class="main-welcome show">Enjoy your day, <%= username %></div>
<div class="main-welcome show">
Enjoy your day, <%= username %>
<p>
@hyotaek-jang | 문의사항 및 버그제보 : [email protected]
</p>
</div>

<div class="main-enterName">
<p>What's your name?</p>
Expand Down
2 changes: 1 addition & 1 deletion ourtodo기록.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,6 @@ sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-po

- https 지원안하는 사이트가 있을 수 있으니까 자동 삽입을 https대신 http://
- 엔터로 로그인 -> form으로 감싸고 프리벤트 디폴트
- 문의사항 표시
- 문의사항 표시 - 완료

- 깃에 올라간 파일 삭제 git rm --cached [File Name]

0 comments on commit 31d22ae

Please sign in to comment.