-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommendation-page.html
80 lines (70 loc) · 2.4 KB
/
recommendation-page.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recommendation | IWORDER</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- TinyMCE -->
<script type="text/javascript" src="js/tinymce/tinymce.min.js"></script>
<script>
tinymce.init({
selector:'textarea',
branding: false,
plugins: "wordcount",
statusbar: true,
toolbar: 'bold italic',
menubar: false
});
</script>
</head>
<body>
<!-- The Article Section -->
<section id="article">
<!-- Article Fixed Top Nav -->
<div class="container article-nav">
<div class="row">
<div class="col-xs-12 col-xs-offset-0">
<a href="hub.html" class="hub-ico">
<i class="fas fa-users" style="font-size:25px;"></i>
</a>
</div>
</div>
</div>
<div class="container article-content">
<div class="row">
<div class="art col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 col-xs-12 col-xs-offset-0">
<!-- Article Head -->
<p class="commentary" style="font-weight: bold;font-size: 16px;">
What do you like about this post?
</p>
<p>
Add a short commentary and recommend. Commentaries would be displayed on the hub.
</p>
<form action="" method="">
<div class="form-group">
<textarea name="commentary" id="commentary" cols="30" rows="10" class="form-control" placeholder="(Maximum of 70 characters)"></textarea>
</div>
<!-- This is supposed to display the number of character typed in -->
<!-- <div class="progress" style="height: 14px;font-size: 12px;">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%; line-height: 1.2;">
50/70
</div>
</div> -->
<div class="form-group">
<button type="submit" class="btn btn-worder pull-right">
Recommend
</button>
</div>
</form>
</div>
</div>
</section>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>