-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (87 loc) · 4.02 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway&family=Tajawal&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.1.js" integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<title>Students Info</title>
</head>
<body id="body">
<div class="students_info">
<div class="head">
<h2>إضافة طالب</h2>
</div>
<div class="inputs">
<div>
<label for="usr">اسم المستخدم : </label>
<input class="input" placeholder="Yazan_175031" title="Yazan_175031" type="text" id="usr">
</div>
<div>
<label for="Name">اسم الطالب : </label>
<input class="input" placeholder="يزن عاقل" title="أدخل الاسم بالعربية" type="text" id="Name">
</div>
<div>
<label for="date">التاريخ : </label>
<input class="input" title="من 1960 حتى 2004" type="date" id="date" min="1960-01-01" max="2004-01-01">
</div>
<div>
<label for="programm">البرنامج : </label>
<select class="input" name="programm" id="programm">
<option value="TIC">TIC</option>
<option value="BAIT">BAIT</option>
<option value="ITE">ITE</option>
</select>
</div>
<div>
<label for="tel">الموبايل : </label>
<input class="input" dir="ltr" placeholder="+963-9xxxxxxxx" title="+11-7654321 أو" type="text" id="tel">
</div>
</div>
<div class="captcha-container">
<input type="text" id="captcha" disabled/><br/><br/>
<input type="text" id="inputText" placeholder="ادخل رمز كابتشا هنا"/><br/><br/>
<button id="Refresh">رمز جديد</button>
</div>
<button id="add" class="click">إضافة</button>
<hr>
<div class="outputs">
<h2>جدول باسماء الطلاب</h2>
<form>
<div>
<input class="click" id="rad_name" type="radio" value="" name="rad">
<label for="rad_name">اسم الطالب</label>
<input class="click" id="rad_pro" type="radio" value="" name="rad">
<label for="rad_pro">البرنامج</label>
</div>
</form>
<form>
<label for="program">البرنامج : </label>
<select name="program" id="program" class="click">
<option value="All">All</option>
<option value="TIC">TIC</option>
<option value="BAIT">BAIT</option>
<option value="ITE">ITE</option>
</select>
</form>
<table>
<tr>
<th>متسلسل</th>
<th>اسم المستخدم</th>
<th>اسم الطالب</th>
<th>البرنامج</th>
</tr>
<tbody id="t-body"></tbody>
</table>
</div>
<button id="convert" class="click">Convert To JSON</button>
<div id="div_json" hidden>
<textarea id="json_container" placeholder="JSON content">
</textarea>
</div>
</div>
<script src="functions.js"></script>
</body>
</html>