-
Notifications
You must be signed in to change notification settings - Fork 0
/
relatofeito.php
141 lines (117 loc) · 3.26 KB
/
relatofeito.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
// Conexão
include_once 'crud/conexao.php';
// header - css - bootstrap
include_once 'header.php';
include_once "menuresp.php"
?>
<style>
body{
background-color: white;
height: 100%;
margin: 0;
font: 400 15px/1.8 Arial;
}
.table .thead-dark th {
color: #000;
background-color: #EAD7FE;
border-color: #EAD7FE;
}
#row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: 0px;
margin-left: -15px;
}
.media-body {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
margin-left: 4%;
}
p#tex1{
color: #555;
text-align:justify;
font-family:Arial;
margin-left: 10%;
margin-right:10%;"
}
p#tex2{
color: #555;
text-align:justify;
font-family:Arial;
margin-left: 33%;
margin-right: 10%;
}
@media screen and (max-width:600px){
p#tex1{
color: #555;
text-align:justify;
font-family:Arial;
margin-left: -20%;
margin-right: -20%;
}
p#tex2{
color: #555;
text-align:center;
font-family:Arial;
margin-left: -26%;
margin-right: -26%;
}
}
</style>
<h2 style="color:#1c2331; font-family:Arial; text-align:center; margin-top:0.5%">
Relatos de mulheres Vítimas de Violência Doméstica</h2>
<div style="color: #777; background-color:#d8d8d8; text-align:center; padding:50px 80px; text-align: justify; margin-top:1%">
<p id="tex1">Abaixo estão todos os relatos de mulheres que passaram ou ainda estão em situação de Violência Doméstica. Deixar seu relato é de
extrema importância, pois esse ato influencia cada vez mais as mulheres denunciarem, e se a situação for adversa,
é uma forma de divulgar as falhas da justiça em nosso país, gerando movimentos e até ajuda de profissionais que visualizarem
o relato da vítima, então não deixe de relatar. <b>NÃO SE CALE! </b>
</p>
<p id="tex2">Para deixar seu relato em nosso site, <a style="color: black;" href="cadastrousuario.php" >clique aqui </a> e faça seu cadastro!</p>
</div>
<h4 style="color:#1c2331; font-family:Arial; text-align:center; margin-top:1%">Relatos feitos:</h4>
<div class="row" id="row">
<div class="container">
<!-- <div class="table-responsive">
<table class="table table-bordered">
<thead class="thead-dark">
<tr>
<th style="font-family:Arial; color:#1c2331;">Nome</th>
<th style="font-family:Arial; color:#1c2331;">Relatos</th>
</tr>
</thead>
<tbody> -->
<ul class="list-group list-group-flush">
<?php
$banco = "SELECT * FROM recados ORDER BY id DESC";
$result = mysqli_query($conn, $banco);
if(mysqli_num_rows($result) > 0):
while($row = mysqli_fetch_array($result)):
?>
<div class="media">
<div class="media-body">
<div style="color: #777; background-color:#d8d8d8; text-align:center; padding:50px 80px; text-align: justify;
margin-top: 1%;">
<h6 class="media-heading" style="color:black;"><strong><?php echo $row['nome']; ?></strong></h6>
<?php echo $row['recado']; ?>
</div>
</div>
</div>
<?php
endwhile;
else: ?>
</ul>
<?php
endif;
?>
</div>
<br>
</div>
</div>
<br>
<br>
<?php include_once "footer.php"?>