Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강희주
/
Music_Recommendation_Website
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
진재영
2022-06-08 01:18:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4f9af2474e7f4119962c7f65f1c8380c4a75a0d1
4f9af247
1 parent
96400227
register.html updated
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
passport_ex/register.html
passport_ex/register.html
0 → 100644
View file @
4f9af24
<!DOCTYPE html>
<html
lang=
"ko"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
회원 가입
</title>
<style>
#container
{
width
:
600px
;
margin
:
10px
auto
;
}
</style>
<link
rel=
"stylesheet"
href=
"register2.css"
>
</head>
<body>
<div
id=
"container"
>
<h1>
'프로그램명'을 방문해주셔서 감사합니다.
</h1>
<form
method=
"post"
action=
"/join"
>
<fieldset>
<legend>
사용자 정보
</legend>
<ul>
<li>
<label
for=
"umail"
>
아이디(이메일)
</label>
<input
type=
"email"
name=
"email"
required
>
</li>
<li>
<label
for=
"pwd1"
>
비밀번호
</label>
<input
type=
"password"
name=
"password"
placeholder=
"문자와 숫자, 특수 기호 포함"
required
>
</li>
<li>
<label
for=
"name"
>
이름
</label>
<input
type=
"name"
name=
"name"
placeholder=
"이름"
required
>
</li>
</ul>
</fieldset>
<div
id=
"buttons"
>
<input
type=
"submit"
value=
"가입하기"
>
<input
type=
"reset"
value=
"취소"
onclick=
"movepage2()"
/>
<script
type=
"text/javascript"
>
function
movepage2
()
{
location
.
href
=
"/"
}
</script>
</div>
</form>
<br>
<br>
<br>
<!-- 공간확보 -->
<footer>
<div>
<p><b>
developed by 강희주, 진재영, 김재욱
</b></p>
<address>
Contact for more information. 010-2400-6771
</address>
<img
style=
"width: 30%; height: 30%; float: right;"
src=
"https://blog.kakaocdn.net/dn/bjsDsi/btqxXJM3JKe/WAK7xHbOm7kxyVqRIvoOaK/img.jpg"
alt=
"경희대 마크"
>
</div>
</footer>
</div>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment