-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.66 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
<!DOCTYPE html>
<html dir="rtl">
<head>
<link rel="stylesheet" media="screen" href="https://fontlibrary.org//face/homa" type="text/css"/>
<link rel="stylesheet" href="style.css">
<title>فرم ورود</title>
</head>
<body>
<div class="container">
<div class="container-title">
<h1>فرم ورود به وبسایت</h1>
<p>این فرم برای ثبت نام در سایت بزرگ ارز دیجیتال شیراز می باشد.</p>
</div>
<form action="#" method="" id="form">
<div class="input-container">
<label for="name">نام:</label>
<input type="text" name="name" id="name" placeholder=" نام خود را وارد کنید">
</div>
<div class="input-container">
<label for="email">رایانامه:</label>
<input type="email" name="email" id="email" placeholder=" ایمیل خود را وارد کنید">
</div>
<div class="input-container">
<label for="password">رمز عبور:</label>
<input type="password" name="password" id="password" placeholder=" پسورد خود را وارد کنید">
</div>
<div class="input-container">
<label for="country">کشور:</label>
<input type="text" name="country" id="country" placeholder=" کشور خود را وارد کنید">
</div>
<button type="submit">ساخت کاربری</button>
</form>
</div>
</body>
</html>