-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsumision.php
More file actions
executable file
·49 lines (47 loc) · 1.95 KB
/
Copy pathsumision.php
File metadata and controls
executable file
·49 lines (47 loc) · 1.95 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
<?php
$page_title = "Vie De Geek - Soumettre";
include ($_SERVER['DOCUMENT_ROOT'].'/VieDeGeek/fragments/shared/header.php');
?>
<style type="text/css">
#pub{
opacity:0;
height: 0%;
width: 0%;
}
#text_pub{
opacity:0;
height: 0%;
width: 0%;
font-size: 0px;
}
</style>
<div id="corp_soumission">
<div id="text_soumission">
<h3 align="center">Soumettre une anecdote</h3>
<form method="post" action="/VieDeGeek/fragments/traitements/trait_sumision.php">
<p id ="soumission"align="center" padding-right="10px">
<ul>
<li>Rappel du concept : Une anecdote qui commence par "Aujourd'hui" et qui se termine par "VieDeGeek".</li>
<li>Attention : Une anecdote écrite en SMS ou comportant trop de fautes d'orthographe <br> est toujours refusée.</li>
<li>N'utilisez pas cet espace pour des discussions, de la publicité ou pour tout autre texte n'étant pas une VieDeGeek.</li>
</ul>
</p>
<table id="table" align="center">
<tr>
<td>
<textarea id="anecdote" name="anecdote" cols="50" rows="10" value="Aujourd'hui,"> Aujourd'hui, </textarea>
<br />
Il vous reste <span id="carac_reste_textarea_1"></span> caractères.
<script type="text/javascript">
maxlength_textarea('anecdote','carac_reste_textarea_1',300);
</script>
</td>
</tr>
</table>
<p align="center"><input type="submit" name="submit_anecdote" value="Valider" /><input type="button" onclick="reset()" value="Reset" /></p>
</form>
</div>
</div>
<?php
include ($_SERVER['DOCUMENT_ROOT'].'/VieDeGeek/fragments/shared/footer.php');
?>