Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
MinsoftK
2020-04-15 19:21:37 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1dbe077d5f66feb4a09adf9bacafa853194c664f
1dbe077d
1 parent
4e9196b9
add js.html to ex(for usage later)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
front/web/ex/js.html
front/web/ex/js.html
0 → 100644
View file @
1dbe077
<!doctype html>
<html>
<head>
<title>
KHU KHU Chat
</title>
<meta
charset=
"utf-8"
>
<link
rel=
"stylesheet"
href=
"style.css"
>
<style>
</style>
</head>
<body>
<h1><a
href=
"main.html"
color:black
>
KHU Chatting service
</a></h1>
<img
src=
"image/signin.jpg"
class=
"image"
>
<input
id=
"night_day"
type=
"button"
value=
"night"
onclick=
"
if(document.querySelector('body').style.backgroundColor==='black')
{
document.querySelector('body').style.backgroundColor= 'white';
document.querySelector('body').style.color= 'black';
document.querySelector('#night_day').value= 'night';
}else{
document.querySelector('body').style.backgroundColor= 'black';
document.querySelector('body').style.color= 'white';
document.querySelector('#night_day').value= 'day';
}
"
>
<div
id=
"grid"
>
<ol>
<li><a
href=
"whatiskhuchat.html"
class=
"saw"
>
What is KHU chat?
</a></li>
<li><a
href=
"loginmain.html"
class=
"saw"
>
로그인
</a></li>
<li><a
href=
"signinmain.html"
class=
"saw"
>
회원가입
</a></li>
<li><a
href=
"question.html"
class=
"saw"
>
문의사항
</a></li>
<li><a
href=
"afterlogin.html"
class=
"saw"
>
로그인이후
</a></li>
</ol>
<div
id=
"article"
>
<h2>
회원가입
</h2>
<div
id=
"inputset"
>
<form
class=
"signinform"
action=
"loginmain.html"
>
<label
for=
"email"
>
Email:
</label><br>
<input
type=
"text"
name=
"email"
><br>
<label
for=
"password"
>
password:
</label><br>
<input
type=
"password"
name=
"password"
><br>
<label
for=
"name"
>
이름:
</label><br>
<input
type=
"text"
name=
"name"
><br>
<label
for=
"age"
>
나이:
</label><br>
<input
type=
"text"
name=
"age"
><br><br>
<label
for=
"sex"
>
성별:
</label><br>
<input
type=
"radio"
value=
"man"
name=
"sex"
>
남자
<br>
<input
type=
"radio"
value=
"woman"
name=
"sex"
>
여자
<br><br>
<label
for=
"work"
>
직업:
</label><br>
<input
type=
"radio"
value=
"nowork"
name=
"work"
>
무직
<br>
<input
type=
"radio"
value=
"Hstudent"
name=
"work"
>
중/고생
<br>
<input
type=
"radio"
value=
"Ustudent"
name=
"work"
>
대학생
<br>
<input
type=
"radio"
value=
"worker"
name=
"work"
>
직장인
<br><br>
<label
for=
"interesting"
>
관심사(중복선택가능):
</label><br>
<input
type=
"checkbox"
value=
"movie"
name=
"interesting"
>
영화
<br>
<input
type=
"checkbox"
value=
"song"
name=
"interesting"
>
노래
<br>
<input
type=
"checkbox"
value=
"study"
name=
"interesting"
>
공부
<br>
<input
type=
"checkbox"
value=
"coding"
name=
"interesting"
>
코딩
<br><br>
<input
type=
"submit"
value=
"회원가입신청"
>
</form>
</div>
</div>
</div>
</body>
</html>
Please
register
or
login
to post a comment