|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8" /> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 7 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 8 | + <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 9 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| 10 | + <link href="https://fonts.googleapis.com/css2?family=Oxygen&family=Oxygen+Mono&display=swap" rel="stylesheet" /> |
| 11 | + <link href="https://fonts.googleapis.com/css2?family=Rubik+Maze&family=Rubik+Maze&display=swap" rel="stylesheet" /> |
| 12 | + <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" rel="stylesheet" /> |
| 13 | + <link rel="stylesheet" href="css/styles.css"> |
| 14 | + <link rel="stylesheet" href="dist/styles.css"> |
| 15 | + |
| 16 | + <title>Keith Prinkey Portfolio</title> |
| 17 | +</head> |
| 18 | + |
| 19 | + |
| 20 | +<nav> |
| 21 | + <ul> |
| 22 | + <li> |
| 23 | + <h1> |
| 24 | + <a href="/"> |
| 25 | + <span class="fa-solid fa-code"></span> |
| 26 | + <span>Keith Prinkey SR</span> |
| 27 | + </a> |
| 28 | + </h1> |
| 29 | + </li> |
| 30 | + <li> |
| 31 | + <a href="/disclaimer.html" title="Contact-Us">Disclaimer</a> |
| 32 | + </li> |
| 33 | + <li><a href="/index.html#projects" title="Projects">Projects</a></li> |
| 34 | + <li> |
| 35 | + <a href="/about.html" title="About-Us">About</a></li> |
| 36 | + <li> |
| 37 | + |
| 38 | + <a href="https://www.linkedin.com/in/keith-prinkey-it/" target="_blank" title="LinkedIn"> |
| 39 | + <span class="fab fa-linkedin fa-flip" aria-hidden="true"> |
| 40 | + <span class="sr-only">LinkedIn</span> |
| 41 | + </a> |
| 42 | + </li> |
| 43 | + <li><a href="https://www.github.com/KeithPrinkey-ops" target="blank" title="Github"> |
| 44 | + <span class="fa-brands fa-square-github fa-flip" aria-hidden="true"> |
| 45 | + <span class="sr-only">Github</span> |
| 46 | + </a></li> |
| 47 | + <li> |
| 48 | + <a href="https://ccmo-my.sharepoint.com/:w:/g/personal/kaprinkey1_ccis_edu/EZdVQU86e7hItQkBDe1Ng8oB3XqnSvYZGidHas1gPqXTCw?e=7bRnab" target="_blank" title="Resume" class="button">Resume</a></li> |
| 49 | + </ul> |
| 50 | +</nav> |
| 51 | + |
| 52 | +<h1>Contact Me</h1> |
| 53 | + |
| 54 | +<div class="gradient"> |
| 55 | + </div> |
| 56 | + <div class="contact-form-container"> |
| 57 | + <form id="contact-form" class="contact-form" method="POST" action="form-handler.php"> |
| 58 | + <input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token']; ?>"> |
| 59 | + <!-- Form fields here --> |
| 60 | + <label for="name">Name:</label><br> |
| 61 | + <input type="text" id="name" name="name" required autocomplete="name"><br> |
| 62 | + |
| 63 | + <label for="email">Email:</label><br> |
| 64 | + <input type="email" id="email" name="email" required autocomplete="email"><br> |
| 65 | + |
| 66 | + <label for="reason">Reason for Contact:</label><br> |
| 67 | + <textarea id="reason" name="reason" required></textarea><br> |
| 68 | + |
| 69 | + <label for="service">Services needed?</label><br> |
| 70 | + <select id="service" name="service"> |
| 71 | + <option value="website">Website</option> |
| 72 | + <option value="domain">Domain Management</option> |
| 73 | + <option value="server">Server Management</option> |
| 74 | + </select> |
| 75 | + |
| 76 | + <label for="consent">Consent to be contacted</label> |
| 77 | + |
| 78 | + <div class="toggle-switch"> |
| 79 | + <input type="checkbox" id="consent" name="consent"> |
| 80 | + <label for="consent"></label> |
| 81 | + </div> |
| 82 | + |
| 83 | + <button type="submit">Submit</button> |
| 84 | + |
| 85 | + |
| 86 | + <div id="success-modal" class="hidden"> |
| 87 | + <p>Your message was sent successfully!</p> |
| 88 | + </div> |
| 89 | + |
| 90 | + </form> |
| 91 | + </div> |
| 92 | + |
| 93 | + |
| 94 | + |
| 95 | + |
| 96 | + <section id="footer"> |
| 97 | + <footer> |
| 98 | + <h2>Keith Prinkey · Software Developer</h2> |
| 99 | + <ul> |
| 100 | + <li> |
| 101 | + <a href="https://www.linkedin.com/in/keith-prinkey-it/" target="_blank"> |
| 102 | + <span class="fab fa-linkedin" aria-hidden="true"></span> |
| 103 | + <span class="sr-only">LinkedIn</span> |
| 104 | + </a> |
| 105 | + </li> |
| 106 | + <li> |
| 107 | + <a href="https://www.github.com/keithprinkey-ops" target="_blank"> |
| 108 | + <span class="fab fa-github-square" aria-hidden="true"></span> |
| 109 | + <span class="sr-only">Github</span> |
| 110 | + </a> |
| 111 | + </li> |
| 112 | + <li> |
| 113 | + <a href=" mailto:[email protected]" target=" _blank" > |
| 114 | + <span class="fas fa-envelope" aria-hidden="true"></span> |
| 115 | + <span class="sr-only">Email</span> |
| 116 | + </a> |
| 117 | + </li> |
| 118 | + </ul> |
| 119 | + <p> |
| 120 | + <small>© 2021 Keith Prinkey SR. All rights reserved.<br> |
| 121 | + Disclaimer: The Twitch logo used in this portfolio project is the registered trademark of Twitch Interactive, |
| 122 | + Inc., or its affiliates. The logo has been used for the purposes of academic display and discussion only. |
| 123 | + There is no endorsement or sponsorship implied, nor is there any relationship between the portfolio author and |
| 124 | + Twitch Interactive, Inc. All rights and credits go to the original rights holder. |
| 125 | + </small> |
| 126 | + </p> |
| 127 | + </footer> |
| 128 | + </section> |
| 129 | + |
| 130 | +<script src="app.js"></script> |
| 131 | + |
| 132 | +</html> |
0 commit comments