diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-07-30 00:15:29 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-07-30 00:15:29 +0300 |
commit | 09e06e034428608bcf8c2c09d6f84e603dbb75c9 (patch) | |
tree | d1ebf01fd87899541f4636987e590755d679bf10 /contact.php | |
parent | 8a67fcfc292ec2a2d6dc7152d7c3c8b20038d289 (diff) | |
download | VoidNet_Site-09e06e034428608bcf8c2c09d6f84e603dbb75c9.tar.gz VoidNet_Site-09e06e034428608bcf8c2c09d6f84e603dbb75c9.tar.zst |
Added about page, fixed size of image in FlashRunner page to not go over borders and changed width of contact page input elements
Diffstat (limited to 'contact.php')
-rw-r--r-- | contact.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contact.php b/contact.php index 1d8bb05..4afab69 100644 --- a/contact.php +++ b/contact.php @@ -28,6 +28,7 @@ <li><a class="dropdown-item wtext dropdown_item_transition" href="https://twitter.com/VoidNetServers" target="_blank" rel="noopener noreferer">VoidNet Twitter</a></li> <li><a class="dropdown-item wtext dropdown_item_transition" href="https://discord.gg/dZ7Kd2RqSv" target="_blank" rel="noopener noreferer">VoidNet Discord</a></li> <li><a class="dropdown-item wtext dropdown_item_transition" href="contact.php">Contact</a></li> +<li><a class="dropdown-item wtext dropdown_item_transition" href="about.html">About</a></li> </ul> </li> </ul> @@ -65,13 +66,13 @@ if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){ <form name="contact_form" action="contact.php" method="POST"> <label for="s_email" class="content_text wtext"><u>Your email</u></label> <br/> -<input type="text" class="form-control form-control-sm w-50 bg-dark text-white border-0" name="sender_email" id="s_email"/> +<input type="text" class="form-control form-control-sm w-75 bg-dark text-white border-0" name="sender_email" id="s_email"/> <br/> <label for="s_message" class="content_text wtext"><u>Message</u></label> <br/> -<textarea name="message" class="form-control form-control-sm w-50 bg-dark text-white border-0" id="s_message" rows="10" style="resize: none;"></textarea> +<textarea name="message" class="form-control form-control-sm w-75 bg-dark text-white border-0" id="s_message" rows="10" style="resize: none;"></textarea> <br/> -<input type="submit" value="Send" class="btn btn-md btn-success w-50"/> +<input type="submit" value="Send" class="btn btn-md btn-success w-75"/> </form> </center> <br/> |