@@ -29,6 +29,7 @@ textarea::-webkit-scrollbar-thumb {
{{!disabled}}
required="true"
autofocus="true"
+ placeholder="Paste something here..."
>{{ content }}</textarea>
</form>
<form id="copy" method="post" action="{{ action }}">
@@ -28,6 +28,7 @@ input[type="url"]::-webkit-scrollbar-thumb {
+ placeholder="Paste URL here..."
value="{{ content }}"
></input>
@@ -71,7 +71,6 @@ def validate_parameter(request: LocalRequest, name: str) -> bytes:
if content_length > CLIP_SIZE_LIMIT + OVERHEAD:
return abort(418, f"Content-Length can not exceed {CLIP_SIZE_LIMIT*3} bytes")
- print(request.content_type)
# TODO: add test for both query/form param
if 'multipart/form-data' in request.content_type:
# TODO: what about binary data ?