diff options
author | Joas Schilling <coding@schilljs.com> | 2020-03-19 12:09:57 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-08-19 11:20:35 +0200 |
commit | e66bc4a8a74ad6071569ea707e986a0e21aca66d (patch) | |
tree | 5e96164d0195f944a737e47a5dbe70a116b2ab64 /core/templates | |
parent | 4ff492a4927accb2e09559467477a1815c90593b (diff) | |
download | nextcloud-server-e66bc4a8a74ad6071569ea707e986a0e21aca66d.tar.gz nextcloud-server-e66bc4a8a74ad6071569ea707e986a0e21aca66d.zip |
Send "429 Too Many Requests" in case of brute force protection
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/429.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/templates/429.php b/core/templates/429.php new file mode 100644 index 00000000000..caf8a3675e2 --- /dev/null +++ b/core/templates/429.php @@ -0,0 +1,4 @@ +<div class="body-login-container update"> + <h2><?php p($l->t('Too many requests')); ?></h2> + <p class="infogroup"><?php p($l->t('There were too many requests from your network. Retry later or contact your administrator if this is an error.')); ?></p> +</div> |