-
Notifications
You must be signed in to change notification settings - Fork 0
/
nachricht.html
37 lines (37 loc) · 1.27 KB
/
nachricht.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nachrichten abschicken</title>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="mycode.js" type="text/javascript"></script>
</head>
<body>
<div class="box box1">
<h1>Nachricht abschicken</h1>
</div>
<div class="NachrichtContainer">
<div class="box nachrichtbox">
<form name="Formula1" method="POST" action="abschicken.php">
<table>
<tr>
<td>Empfänger:</td>
<td><input type="text" name="nEmpfanger"></td>
</tr>
<tr>
<td>Nachricht:</td>
<td><textarea name="nNachricht" rows="10" cols="50"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" id="submit-button" value="Absenden"></td>
</tr>
</table>
</form>
</div>
<div class="loginoutbox">
<h2><a href="logout.php">Ausloggen</a></h2>
</div>
</div>
</body>
</html>