Toggle navigation
Toggle navigation
This project
Loading...
Sign in
곽윤철
/
Assignment1
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
Yuncheol Kwak
2022-03-31 17:16:22 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
faa474548015bdedc00212f632e19ba618cb6583
faa47454
1 parent
333be5d7
Added file exit.html
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
exit.html
exit.html
0 → 100644
View file @
faa4745
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Exit
</title>
</head>
<body>
<script>
while
(
!
window
.
closed
)
{
const
message
=
prompt
(
"If you enter \"exit\", the program will exit"
);
if
(
message
==
"exit"
)
{
window
.
close
();
}
}
</script>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment