-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignupModify.html
More file actions
52 lines (51 loc) · 1.79 KB
/
signupModify.html
File metadata and controls
52 lines (51 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lifesenior</title>
<link rel="stylesheet" href="{% static 'css/signupStyle.css' %}">
</head>
<body>
<!-- nav bar -->
<!-- copy -->
<nav>
<div class="nav-left">
<img src="{% static 'img/main-nav-logo.png' %}" alt="로고">
<a href="{% url 'index' %}" style="color: #FFFFFF;">인생선배</a>
</div>
<!-- <div class="nav-right">
<p>로그인</p>
</div> -->
</nav>
<!-- header -->
<header>
<div class="signup-box">
<div class="signup-title">
<img src="{% static 'img/main-nav-logo.png' %}" alt="">
<div class="signup-title-content">
<p>어른이 되기 위한 우리의</p>
<p>인생선배</p>
</div>
</div>
<form action="" method="POST" enctype="multipart/form-data">
{% csrf_token %}
<div class="signup-input-info">
<p>아이디</p>
<input type="text" name="username" placeholder="6자 이상">
</div>
<div class="signup-input-info">
<p>비밀번호</p>
<input type="password" name="password1" placeholder="6자 이상">
</div>
<div class="signup-input-info">
<p>비밀번호 확인</p>
<input type="password" name="password2" placeholder="6자 이상">
</div>
<input type="submit" value="인생선배 만나러 가기">
</form>
</div>
</header>
</body>
</html>