-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsender.html
More file actions
35 lines (32 loc) · 1.56 KB
/
sender.html
File metadata and controls
35 lines (32 loc) · 1.56 KB
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
<!doctype html>
<html lang="ar">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>مرسل - رسائل مؤجلة</title>
<link rel="stylesheet" href="style.css">
</head>
<body dir="rtl">
<div class="container">
<h1>مرسل</h1>
<p>أنشئ رمز QR فريد (معرّف) لمعرفتك، يمكن للمستقبل حفظ هذا الرمز بإسمك.</p>
<div>
<button id="genQR" class="btn">إنشاء / تحديث الكود</button>
<div style="margin-top:10px">رمزك (ينسخ كوصف): <span class="qr" id="senderQR">لم يتم الإنشاء</span></div>
</div>
<hr>
<h3>إنشاء رسالة وإرسالها للسيرفر (تعلق حتى تضعها كجاهزة ثم تبتعد)</h3>
<label>نص الرسالة</label>
<textarea id="msg"></textarea>
<div class="controls">
<button id="sendBtn">إرسال إلى السيرفر</button>
<button id="awayBtn" class="btn danger">ابتعد الآن (أوصل الرسائل الجاهزة)</button>
</div>
<h3>الرسائل المرسلة (انقر ثلاث نقرات على رسالة لوضعها كجاهزة)</h3>
<div id="sentList"></div>
<p class="small-note">ملاحظة: افتح صفحة المستقبل في نافذة/تاب آخر لمشاهدة وصول الرسائل بعد أن تجعلها جاهزة وتبتعد.</p>
<p><a href="index.html">رجوع</a></p>
</div>
<script src="script_sender.js"></script>
</body>
</html>