-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMessaging And Comunications
57 lines (53 loc) · 1.46 KB
/
Messaging And Comunications
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Messaging System</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #eaa14e;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
margin-top: 20px;
}
form {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #8c7d7d;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
input[type="text"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #a9d5ee;
border-radius: 3px;
}
button[type="submit"] {
background-color: #007bff;
color: #6d6464;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Job Messaging System</h1>
<form action="send_message.php" method="post">
<input type="text" name="user_to" placeholder="Recipient ID">
<textarea name="message" placeholder="Type your message"></textarea>
<button type="submit">Send</button>
</form>
<!-- Display received messages here -->
</body>
</html>