Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit 8b893ec

Browse files
committed
Refactor HTTP subdomains and add textarea. Closes #320.
1 parent 46bf142 commit 8b893ec

File tree

23 files changed

+87
-16
lines changed

23 files changed

+87
-16
lines changed

common/input/textarea/index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: textarea
3+
layout: page
4+
favicon: gray
5+
background: gray
6+
---
7+
8+
<style>
9+
#content textarea {
10+
font-size: 4vw;
11+
}
12+
</style>
13+
14+
<div id="content">
15+
<h1 style="font-size: 5vw;">
16+
textarea
17+
</h1>
18+
<br><br><br>
19+
<textarea placeholder="Type here." autofocus></textarea>
20+
</div>
21+
22+
<div id="footer">
23+
This page contains a <code>&lt;textarea&gt;</code> input.
24+
</div>

domains/input/http-credit-card.conf renamed to domains/http/http-credit-card.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ server {
66

77
include {{ site.serving-path }}/common/common.conf;
88

9-
root {{ site.serving-path }}/domains/input/http-credit-card;
9+
root {{ site.serving-path }}/domains/http/http-credit-card;
1010
}
1111

1212
server {
File renamed without changes.

domains/input/http-dynamic-login.conf renamed to domains/http/http-dynamic-login.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ server {
66

77
include {{ site.serving-path }}/common/common.conf;
88

9-
root {{ site.serving-path }}/domains/input/http-dynamic-login;
9+
root {{ site.serving-path }}/domains/http/http-dynamic-login;
1010

1111
location /submit {
1212
error_page 405 =200 $uri;
File renamed without changes.
File renamed without changes.

domains/input/http-login.conf renamed to domains/http/http-login.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ server {
66

77
include {{ site.serving-path }}/common/common.conf;
88

9-
root {{ site.serving-path }}/domains/input/http-login;
9+
root {{ site.serving-path }}/domains/http/http-login;
1010

1111
location /submit {
1212
error_page 405 =200 $uri;
File renamed without changes.
File renamed without changes.

domains/input/http-password.conf renamed to domains/http/http-password.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ server {
66

77
include {{ site.serving-path }}/common/common.conf;
88

9-
root {{ site.serving-path }}/domains/input/http-password;
9+
root {{ site.serving-path }}/domains/http/http-password;
1010
}
1111

1212
server {

0 commit comments

Comments
 (0)