-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
113 lines (112 loc) · 2.78 KB
/
form.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<head><head><style>@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
html,
body {
padding: 0;
margin: 0;
}
:focus {
outline: 0;
}
body {
background: #120912;
color: #f5f3f5;
font-family: "Inter", sans-serif;
font-size: 16px;
}
form {
background: #281e28;
width: 600px;
margin: 0 auto;
padding: 2.5rem;
box-sizing: border-box;
font-size: 0.875rem;
}
form h3 {
font-size: 1.5rem;
margin-top: 0;
}
form p {
margin-bottom: 0.625rem;
line-height: 120%;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
width: 100%;
max-width: 100%;
}
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="number"] {
width: 200px;
}
input,
textarea,
select {
background: #120912;
border: 1px solid #4d414d;
border-radius: 2px;
-webkit-border-radius: 2px;
padding: 0 12px;
margin-bottom: 1rem;
margin-top: 0.625rem;
color: inherit;
font-family: inherit;
}
input,
select {
height: 2rem;
min-height: 2rem;
}
input[type="radio"],
input[type="checkbox"] {
height: auto;
min-height: auto;
}
textarea {
height: 6rem;
min-height: 6rem;
padding: 12px;
vertical-align: top;
overflow: auto;
}
input:focus,
textarea:focus {
box-shadow: rgb(18, 9, 18) 0px 0px 0px 2px, rgb(120, 80, 250) 0px 0px 0px 4px;
}
form select {
-webkit-appearance: button;
border-radius: 2px;
-webkit-border-radius: 2px;
-webkit-user-select: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='currentColor' stroke='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.293 8.293a1 1 0 011.414 0L12 13.586l5.293-5.293a1 1 0 111.414 1.414l-6 6a1 1 0 01-1.414 0l-6-6a1 1 0 010-1.414z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");
background-position: center right;
background-repeat: no-repeat;
font-size: inherit;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
input[type="submit"] {
-webkit-box-align: center;
align-items: center;
border-radius: 2px;
-webkit-border-radius: 2px;
padding: 0px 16px;
height: 2rem;
line-height: 14px;
background: rgb(120, 80, 250);
margin-bottom: 0;
border: none;
margin-right: 20px;
}
input[type="submit"]:hover {
background: linear-gradient(rgb(120, 80, 250) 0%, rgb(98, 65, 204) 100%);
cursor: pointer;
}
</style></head></head><form action="formresponsehandling" method="post" enctype="multipart/form-data"><h3>questions</h3><input type="hidden" name="dialogs_form_creation_date"value="2021-01-08 15:17:54.653034"><br><label for="saved_search_url">Saved Search URL</label><br><input type="text" name="saved_search_url" value="None"><br><input type='submit' value='Submit'></form></body>