<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Başvuru Formu</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
.warning {
background-color: #f9edbe;
color: #333;
padding: 10px;
border: 1px solid #f0c36d;
margin-bottom: 20px;
border-radius: 5px;
}
label {
display: block;
margin: 10px 0 5px;
font-weight: bold;
}
input[type="text"], input[type="email"] {
width: 100%;
padding: 8px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
}
.checkbox-group, .radio-group {
margin: 10px 0;
}
.checkbox-group label, .radio-group label {
font-weight: normal;
margin-right: 10px;
}
.submit-button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="warning">Lütfen tüm alanları doldurun.</div>
<form action="submit.php" method="post">
<label for="name">Adınız Soyadınız</label>
<input type="text" id="name" name="name" placeholder="Adınız Soyadınız" required>
<label for="phone">Telefon</label>
<input type="text" id="phone" name="phone" placeholder="Telefon" required>
<label for="email">E-Posta</label>
<input type="email" id="email" name="email" placeholder="email" required>
<label for="experience">Kaç yıllık tecrübeye sahipsiniz?</label>
<input type="text" id="experience" name="experience" placeholder="Kaç yıllık tecrübeye sahipsiniz?" required>
<label>Ehliyet Seçimi</label>
<div class="checkbox-group">
<label><input type="checkbox" name="license[]" value="A1"> A1</label>
<label><input type="checkbox" name="license[]" value="A2"> A2</label>
<label><input type="checkbox" name="license[]" value="A,B"> A,B</label>
<label><input type="checkbox" name="license[]" value="C"> C</label>
<label><input type="checkbox" name="license[]" value="CE"> CE</label>
<label><input type="checkbox" name="license[]" value="D"> D</label>
<label><input type="checkbox" name="license[]" value="DE"> DE</label>
</div>
<label>Sahip olduğunuz araç çeşidi</label>
<div class="checkbox-group">
<label><input type="checkbox" name="vehicle[]" value="Motor"> Motor</label>
<label><input type="checkbox" name="vehicle[]" value="Minivan"> Minivan</label>
<label><input type="checkbox" name="vehicle[]" value="Kamyon"> Kamyon</label>
<label><input type="checkbox" name="vehicle[]" value="Kamyonet"> Kamyonet</label>
<label><input type="checkbox" name="vehicle[]" value="Frigolu Araç"> Frigolu Araç</label>
</div>
<label>Tercih ettiğiniz çalışma şekli</label>
<div class="radio-group">
<label><input type="radio" name="work_type" value="Tam Zamanlı" required> Tam Zamanlı</label>
<label><input type="radio" name="work_type" value="Yarı Zamanlı"> Yarı Zamanlı</label>
</div>
<button type="submit" class="submit-button">Gönder</button>
</form>
</div>
</body>
</html>