-
-
Save xhskabdvjdock/636272575fd6d9bfcbfb73c3405414c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ar" dir="rtl"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>حساب نتائج الطلاب</title> | |
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> | |
</head> | |
<body> | |
<h1>حساب نتائج الطلاب</h1> | |
<form action="{{ url_for('result') }}" method="POST"> | |
<table> | |
<thead> | |
<tr> | |
<th>المادة</th> | |
<th>العلامة</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>اللغة العربية</td> | |
<td><input type="number" name="arabic" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>الرياضيات</td> | |
<td><input type="number" name="math" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>العلوم</td> | |
<td><input type="number" name="science" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>اللغة الإنجليزية</td> | |
<td><input type="number" name="english" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>التربية الإسلامية</td> | |
<td><input type="number" name="islamic" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>التاريخ</td> | |
<td><input type="number" name="history" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>الجغرافيا</td> | |
<td><input type="number" name="geography" min="0" max="100" required></td> | |
</tr> | |
<tr> | |
<td>الحاسوب</td> | |
<td><input type="number" name="computer" min="0" max="100" required></td> | |
</tr> | |
</tbody> | |
</table> | |
<button type="submit">حساب النتيجة</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment