-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.php
More file actions
69 lines (65 loc) · 1.11 KB
/
Copy pathchat.php
File metadata and controls
69 lines (65 loc) · 1.11 KB
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
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Chat Room</title>
<style type="text/css">
body {
/*margin: 0;*/
padding: 0;
}
h3 {
font-family: helvetica;
text-align: center;
}
.enclose {
display: flex;
height: 750px;
width: 100%;
}
.c1 {
height: 80%;
width: 50%;
background-color: #272727;
margin-right: 5%;
}
.c2 {
height: 80%;
width: 50%;
background-color: #000;
}
form {
height: 20%;
}
.msg {
display: block;
margin: auto;
height: 60%;
width: 60%;
border: 2px solid #272727;
font-family: helvetica;
}
input {
margin-left: 7%;
margin-top: 2%;
border: 2px solid #000;
height: 30px;
/*border-radius: 20%;*/
}
</style>
</head>
<body>
<h3>Chat Forum</h3>
<div class="enclose">
<div class="c1">
<h3>Register Your Complaint</h3>
<form action="chat-reg.php" method="POST">
<input type="text" id="msg" name="message" placeholder="Type in your Complaints here"></input>
<input type="submit" />
<input type="reset" />
</form>
</div>
<div class="c2"></div>
</div>
</body>
</html>