-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2.html
More file actions
50 lines (36 loc) · 1.14 KB
/
form2.html
File metadata and controls
50 lines (36 loc) · 1.14 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML>
<html lang="he-IL">
<head>
<meta charset="UTF-8">
<title>טופס</title>
<style type="text/css">
body {margin: 2em 5em;}
div {display:block; margin:1em;padding:.3em;}
label {display:block;padding:0px;margin:1px;}
input {display:block;padding:10px;margin:1px;}
</style>
</head>
<body dir="rtl">
<form action="https://www.huji.ac.il/payment/index.php/starting" method="post">
<input type="hidden" id="token" name="token" value="cbc8fcc51933a997507b7db159e8ee3aa52bc7b27bffe3bd5c22da63356e8d21">
<input type="hidden" id="lang" name="lang" value="he" />
<input type="hidden" id="sid" name="sid" value="100" />
<div>
<label for="name">שם</label>
<input type="text" id="name" name="name" required>
</div>
<div>
<label for="zehut">תעודת זהות</label>
<input type="number" id="zehut" name="zehut" required>
</div>
<div>
<label for="email">דוא״ל</label>
<input type="email" id="email" name="email" required>
</div>
<div>
<div>
<button type="submit">בצע תשלום</button>
</div>
</form>
</body>
</html>