-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreation.php
52 lines (42 loc) · 1.95 KB
/
creation.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
<?php
include_once("view/template/head.php");
?>
<script>
$(function() {
afficher_modal("#creation-mascotte", true);
$("input").keypress(function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if (keycode == 13)
return false;
});
});
</script>
<div id="ecran" class="creation-mascotte">
<div id="creation-mascotte" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<form id="form-creation-mascotte">
<div id="titre">
<span id="titre-tama">Création tama</span>
<span id="titre-gogo">GOGO</span>
</div>
<input type="text" name="nom" placeholder="Nom" />
<select name="sexe" placeholder="Sexe">
<option value="femelle">Fille</option>
<option value="male">Garçon</option>
</select>
<div id="options-mascotte">
<a href="#" id="humanoide" class="bouton" onclick="creer_mascotte('Humanoide');"></a>
<a href="#" id="animal" class="bouton" onclick="creer_mascotte('Animal');"></a>
<a href="#" id="monstre" class="bouton" onclick="creer_mascotte('Monstre');"></a>
</div>
</form>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div><!-- /.ecran .main-->
<?php
include_once("view/template/foot.php");
?>