layout.pug
1.95 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
doctype
html
head
meta(charset='UTF-8')
title= title
meta(name='viewport' content='width=device-width, user-scalable=no')
meta(http-equiv='X-UA-Compatible' content='IE=edge')
link(rel='stylesheet' href='/main.css')
link(rel='stylesheet' href='https://fonts.googleapis.com/css?family=Yeon+Sung&subset=korean')
link(rel='stylesheet' href='https://fonts.googleapis.com/css?family=Song+Myung&subset=korean')
h1(style='font-family:Song Myung; font-size:50px; text-align:center; padding-top:30px;')
| 중고로운 경희나라
body
.container
.profile-wrap
.profile
if user && user.id
.user-name= '안녕하세요! ' + user.nick + '님'
.user-money= '보유 자산: ' + user.money + '원'
input#my-id(type='hidden' value=user.id)
a#logout.btn(href='/auth/logout') 로그아웃
a#register.btn(href='/good') 상품 등록
a#list.btn(href='/list') 낙찰 내역
else
form#login-form(action='/auth/login' method='post')
.input-group
label(for='email' style='font-family:Yeon Sung; font-size:20px; color:black') 이메일
input#email(type='email' name='email' required autofocus style='font-family:Yeon Sung; font-size:15px')
.input-group
label(for='password' style='font-family:Yeon Sung; font-size:20px; color:black') 비밀번호
input#password(type='password' name='password' required style='font-family:Yeon Sung; font-size:15px')
if loginError
.error-message= loginError
a#join.btn(href='/join' style='font-family:Yeon Sung; font-size:20px') 회원가입
button#login.btn(type='submit' style='font-family:Yeon Sung; font-size:20px') 로그인
footer(style='font-family:Yeon Sung')
| Made by 이정민 서예진 김대욱
block good
block content