-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (53 loc) · 2.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="yenilikci">
<meta name="url" content="https://github.com/yenilikci/JavaScript-Kurs-Uygulamasi">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<title>Kurs Uygulaması</title>
</head>
<body>
<div class="container mt-3">
<h1 class="alert alert-warning text-center">Kurs Uygulaması</h1>
<div class="row">
<div class="col-md-5 mt-2">
<form action="" id="new-course">
<div class="form-group">
<label for="title">Kurs Başlığı</label>
<input placeholder="Örn: JavaScript" type="text" class="form-control" id="title">
</div>
<div class="form-group">
<label for="instructor">Eğitmen</label>
<input placeholder="Örn: Github" type="text" class="form-control" id="instructor">
</div>
<div class="form-group">
<label for="image">Resim</label>
<input placeholder="Örn: kurs.jpg" type="text" class="form-control" id="image">
</div>
<button type="submit" class="btn btn-lg btn-success">Kaydet</button>
</form>
</div>
<div class="col-md-7 mt-2">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Resim</th>
<th>Başlık</th>
<th>Eğitmen</th>
<th></th>
</tr>
</thead>
<tbody id="course-list">
</tbody>
</table>
</div>
</div>
</div>
<script src="app.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>