28 lines
670 B
PHP
28 lines
670 B
PHP
<?php
|
|
require 'common.php';
|
|
require 'loginRequired.php';
|
|
?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="styling.css">
|
|
</head>
|
|
<body>
|
|
<!--#include virtual="header.html" -->
|
|
<!--#include virtual="topNavBar.html" -->
|
|
<h2><font color="white">Send a message</h2>
|
|
|
|
<form method="post" action="messageSender.php">
|
|
Who are you sending it to?: <br><input type="text" name="name">
|
|
<br><br>
|
|
Message: <br><textarea name="message" rows="5" cols="40"></textarea>
|
|
<br><br>
|
|
<input type="submit" class="button">
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|