<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>פתיחת קריאת שירות</title>
<link href="https://fonts.googleapis.com/css2?family=Alef&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Alef', sans-serif;
background: #f7f7f7;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 40px auto;
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #222;
}
label {
display: block;
margin-top: 15px;
margin-bottom: 5px;
color: #444;
}
input, textarea, select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 6px;
box-sizing: border-box;
}
button {
margin-top: 20px;
padding: 12px;
background-color: #0073e6;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
width: 100%;
font-size: 16px;
}
button:hover {
background-color: #005bb5;
}
.info {
margin-top: 30px;
font-size: 14px;
color: #666;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>פתיחת קריאת שירות</h1>
<form action="#" method="POST">
<label for="name">שם מלא *</label>
<input type="text" id="name" name="name" required>
<label for="email">דוא"ל *</label>
<input type="email" id="email" name="email" required>
<label for="phone">טלפון נייד</label>
<input type="text" id="phone" name="phone">
<label for="subject">נושא *</label>
<input type="text" id="subject" name="subject" required>
<label for="message">תיאור התקלה *</label>
<textarea id="message" name="message" rows="6" required></textarea>
<label for="file">צירוף קובץ (אופציונלי)</label>
<input type="file" id="file" name="file">
<button type="submit">שלח קריאה</button>
</form>
<div class="info">
<p>שעות פעילות: א'-ה' 09:00–18:00</p>
<p>לתמיכה דחופה: support@example.com | 03-1234567</p>
</div>
</div>
</body>
</html>