-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (40 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My awesome blog</title>
</head>
<body>
<h1>My awesome blog</h1>
<section>
<h2>News form</h2>
<form>
<div id="errorForm"></div>
<div>
<label>Title</label><br/>
<input type="text" name="titleToAdd" />
</div>
<div>
<label>Description</label><br/>
<textarea name="descriptionToAdd"></textarea>
</div>
<input type="submit" value="Submit" />
</form>
</section>
<section>
<h2>My news</h2>
<h3></h3>
<div id="newsList">
</div>
<button id="exportArticles">Exporter</button>
</section>
<script src="./src/misc/constant.js"></script>
<!-- en JS il est important dee déclarer les classes dans l'ordre d'utilisation -->
<script src="./src/error/required-field-error.js"></script>
<script src="./src/dto/article.js"></script>
<script src="./src/view/article-html.js"></script>
<script src="./src/service/article-service.js"></script>
<script src="./src/misc/html-article.js"></script>
<script src="./src/misc/form-article.js"></script>
<script src="./src/main.js"></script>
</body>
</html>