diff options
| author | Mark Powers <mark@marks.kitchen> | 2022-07-30 16:55:06 -0500 | 
|---|---|---|
| committer | Mark Powers <mark@marks.kitchen> | 2022-07-30 16:55:06 -0500 | 
| commit | eadb979910da546fd64b937a0d71d2a6c4f3f934 (patch) | |
| tree | 7e72c26b8625b0202dc833a36d2fa8b04d0b56bb /src/html | |
Diffstat (limited to 'src/html')
| -rw-r--r-- | src/html/404.html | 22 | ||||
| -rw-r--r-- | src/html/email-confirm.html | 22 | ||||
| -rw-r--r-- | src/html/email-success.html | 22 | ||||
| -rw-r--r-- | src/html/email-unsubscribe.html | 22 | ||||
| -rw-r--r-- | src/html/email.html | 28 | 
5 files changed, 116 insertions, 0 deletions
diff --git a/src/html/404.html b/src/html/404.html new file mode 100644 index 0000000..8ef209d --- /dev/null +++ b/src/html/404.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + +<head> +    <title>Mark's Kitchen - Not found</title> +    <meta charset="UTF-8"> +    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> +    <link rel="stylesheet" type="text/css" href="/css/styles.css"> +    <meta name="description" content="Page not found"> +</head> + +<body> +    <div> +        <h1> +            <a class="navigation" href="/" title="marks.kitchen"><</a> +            404 Error +        </h1> +        <p>That page doesn't seem to exist...</p> +    </div> +</body> + +</html> diff --git a/src/html/email-confirm.html b/src/html/email-confirm.html new file mode 100644 index 0000000..3fc6e1a --- /dev/null +++ b/src/html/email-confirm.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + +<head> +    <title>Mark's Kitchen - Email</title> +    <meta charset="UTF-8"> +    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> +    <link rel="stylesheet" type="text/css" href="/css/styles.css"> +    <meta name="description" content="Email unsubscribe"> +</head> + +<body> +    <div> +        <h1> +            Unsubcribe? +        </h1> +        <a href="confirm">Click to unsubscribe!</a> +        </div> +    </div> +</body> + +</html> diff --git a/src/html/email-success.html b/src/html/email-success.html new file mode 100644 index 0000000..c191a7a --- /dev/null +++ b/src/html/email-success.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + +<head> +    <title>Mark's Kitchen - Email</title> +    <meta charset="UTF-8"> +    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> +    <link rel="stylesheet" type="text/css" href="/css/styles.css"> +    <meta name="description" content="Email sucess"> +</head> + +<body> +    <div> +        <h1> +            Email +        </h1> +        <h2 id="status">Subscribed, thank you!</h2> +        </div> +    </div> +</body> + +</html> diff --git a/src/html/email-unsubscribe.html b/src/html/email-unsubscribe.html new file mode 100644 index 0000000..a8fdd1a --- /dev/null +++ b/src/html/email-unsubscribe.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + +<head> +    <title>Mark's Kitchen - Email</title> +    <meta charset="UTF-8"> +    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> +    <link rel="stylesheet" type="text/css" href="/css/styles.css"> +    <meta name="description" content="Email unsubscrube"> +</head> + +<body> +    <div> +        <h1> +            Email +        </h1> +        <h2 id="status">You are now unsubscribed!</h2> +        </div> +    </div> +</body> + +</html> diff --git a/src/html/email.html b/src/html/email.html new file mode 100644 index 0000000..e957b90 --- /dev/null +++ b/src/html/email.html @@ -0,0 +1,28 @@ +<!doctype html> +<html lang="en"> + +<head> +    <title>Mark's Kitchen - Email</title> +    <meta charset="UTF-8"> +    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> +    <link rel="stylesheet" type="text/css" href="/css/styles.css"> +    <meta name="description" content="Sign up for emails"> +</head> + +<body> +    <div> +        <h1> +            Email +        </h1> +        <p>Sign up to receive Mark's email newsletter.</p> +        <div class="form"> +            <form action="/" method="post" enctype="application/x-www-form-urlencoded"> +                <input type="text" placeholder="Your name" name="name" required> +                <input type="email" placeholder="Your email" name="email" required> +                <input type="submit" value="Submit"> +            </form> +        </div> +    </div> +</body> + +</html>  | 
