-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="yenilikci">
<meta name="url" content="https://github.com/yenilikci/JavaScript-Form-Validator">
<title>Form Validator</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container my-5 d-flex justify-content-center">
<div class="col-sm-5">
<div class="card">
<div class="card-header text-center text-muted"><b>Kullanıcı Oluştur</b></div>
<div class="card-body">
<form id="form" novalidate>
<div class="form-group">
<label for="username">Kullanıcı Adı:</label>
<input type="text" class="form-control" id="username" placeholder="Kullanıcı adınızı giriniz">
<div></div>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Email adresinizi giriniz">
<div></div>
</div>
<div class="form-group">
<label for="password">Şifre:</label>
<input type="password" class="form-control" id="password" placeholder="Şifrenizi giriniz">
<div></div>
</div>
<div class="form-group">
<label for="repassword">Şifre Tekrar:</label>
<input type="password" class="form-control" id="repassword" placeholder="Şifrenizi tekrar giriniz">
<div></div>
</div>
<button type="submit" class="btn btn-dark btn-block">Kayıt Ol</button>
</form>
</div>
<div class="card-footer text-muted text-center">https://github.com/yenilikci</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>