This repository was archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
72 lines (71 loc) · 2.25 KB
/
form.html
File metadata and controls
72 lines (71 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
html, body {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
form {
position: absolute;
width: 300px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0px;
padding: 0px;
}
input {
display: block;
width: 100%;
height: 30px;
padding: 6px 7px;
}
button {
position: relative;
display: inline-flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
cursor: pointer;
user-select: none;
will-change: color, background, opacity, border, box-shadow;
font-size: 18px;
line-height: 24px;
font-weight: 600;
color: white;
box-shadow: transparent 6px 0px 0px 0px inset, transparent -6px 0px 0px 0px inset, transparent 0px 6px 0px 0px inset, transparent 0px -6px 0px 0px inset;
border-width: initial;
border-style: none;
border-color: initial;
border-image: initial;
border-radius: 4px;
transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, background 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, border 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
text-decoration: none;
outline: none;
background: #1b8486;
padding: 14px 24px;
margin-top: 6px;
text-align: center;
}
</style>
</head>
<body>
<form method="post" action="/canvas" target="_blank">
<label>userId</label>
<input name="userId" value="pagecall"/>
<br>
<label>publicRoomId</label>
<input name="publicRoomId" value="test" style="margin-top: 6px;" />
<button type="submit" class="btn">
입장하기
</button>
</form>
</body>
</html>