-
Notifications
You must be signed in to change notification settings - Fork 0
/
iletisim.php
122 lines (92 loc) · 3.97 KB
/
iletisim.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
<?php include "header.html"; ?>
<div class="jumbotron mb-0">
<div id="formDiv" class="container shadow-lg col-md-6 text-white">
<br>
<form method="POST" id="iletisimFormu" name="iletisimFormu" onsubmit="return false">
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="validationCustom01">Ad</label>
<input type="text" name="ad" id="ad" class="form-control" placeholder="Ad" value="">
<label id="adKontrol" class="lblerr"></label>
</div>
<div class="col-md-6 mb-3">
<label for="validationCustom02">Soyad</label>
<input type="text" name="soyad" id="soyad" class="form-control" placeholder="Soyad" value="">
<label id="soyadKontrol" class="lblerr"></label>
</div>
</div>
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="validationCustom05">Email</label>
<input type="text" name="email" id="email" class="form-control" placeholder="Email">
<label id="mailKontrol" class="lblerr"></label>
</div>
<div class="col-md-6 mb-3">
<label for="validationCustom03">Telefon</label>
<input type="tel" name="telefon" id="telefon" class="form-control" placeholder="05xx-xxx-xxxx">
<label class="lblerr" id="telefonKontrol"></label>
</div>
</div>
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-2 pt-0">Cinsiyet</legend>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="cinsiyet" id="erkek" value="erkek">
<label class="form-check-label" for="erkek">
Erkek
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" id="kadın" name="cinsiyet" value="kadın">
<label class="form-check-label" for="kadın">
Kadın
</label>
</div>
</div>
</div>
<label id="cinsiyetKontrol" class="lblerr"></label>
</fieldset>
<textarea class="form-control" cols="0" rows="0" id="cinsiyet" name="cinsiyet"></textarea>
<div class="form-group row">
<label for="example-date-input" class="col-3 col-form-label">Doğum Tarihiniz</label>
<div class="col-9">
<input class="form-control" type="date" id="dogum" name="dogum">
<label id="dogumKontrol" class="lblerr"></label>
</div>
</div>
<div class="form-group">
<label for="exampleFormControlSelect1" >Programınız</label>
<select class="form-control" id="program" name="program">
<option value="Önlisans">Önlisans</option>
<option value="Lisans">Lisans</option>
<option value="Yükseklisans">Yükseklisans</option>
</select>
<label class="lblerr" id="progKontrol"></label>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Mesaj</label>
<textarea id="mesaj" name="mesaj" class="form-control" rows="3"></textarea>
<label id="mesajKontrol" class="lblerr"></label>
</div>
<div class="form-row">
<div class="col-md-4 mb-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" name="check" value="" id="check">
<label class="form-check-label" for="invalidCheck">
Koşulları kabul ediyorum.
</label>
</div>
</div>
<div class="col-md-8 mb-3">
<label id="kosulKontrol" class="lblerr"></label>
</div>
</div>
<button class="btn btn-success mr-4" onclick="formKontrol()">Gönder</button>
<button class="btn btn-primary" type="reset">Temizle</button>
</form>
<br>
</div>
</div>
<script src="js/Form.js"></script>
<?php include "footer.php"; ?>