Pass HTML validation

This commit is contained in:
Andrew Dinh 2021-06-13 10:59:35 -07:00
parent 3fe00bfd96
commit 6defa2c93b
Signed by: andrewkdinh
GPG Key ID: 2B557D93C6C08B86
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
@ -23,7 +23,7 @@
<textarea class="formcache" required id="message" name="message" placeholder="Message"></textarea> <textarea class="formcache" required id="message" name="message" placeholder="Message"></textarea>
<div style="padding: 5px 0"> <div style="padding: 5px 0">
<img src="data:image/png;base64, {{ captcha_png }}" /> <img src="data:image/png;base64,{{ captcha_png }}" alt="CAPTCHA image"/>
</div> </div>
<input required type="text" name="captcha-solution" placeholder="CAPTCHA Solution"> <input required type="text" name="captcha-solution" placeholder="CAPTCHA Solution">
<input type="hidden" name="captcha-id" value="{{ captcha_id }}"> <input type="hidden" name="captcha-id" value="{{ captcha_id }}">

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">