-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditor.html
42 lines (37 loc) · 1.8 KB
/
editor.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
<html>
<head>
<title>TinyMCE - Setup-from-ec2</title>
<link rel="stylesheet" type="text/css" href="css/editor.css">
</head>
<body>
<header align="center">Authoring New Interview Experience</header>
<table>
<tr>
<td><p id="title">TITLE</p></td>
<td><input type="text" name="title" id="titleID" placeholder="enter your role" class="textfield"></td>
</tr>
<tr>
<td><p id="company-name">COMPANY</p></td>
<td><input type="text" name="title" id="companyID" placeholder="enter your company" class="textfield"></td>
<td> </td>
<td id="result-status">RESULT</td>
<td><input type="checkbox" id="hired" value="true">
<span style="font-family: calibri, sans-serif;font-size: 20px">Hired</span>
</td>
</tr>
</table>
<table>
<form id="get-data-form" method="post">
<textarea class="tinymce" id="texteditor"></textarea>
<input type="submit" value="Submit Experience >>" class="button button1">
</form>
</table>
<div id="data-container"></div>
<script src="https://www.gstatic.com/firebasejs/4.5.1/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.5.1/firebase-firestore.js"></script>
<script type="text/javascript" src="js/appconfig.js"></script>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="plugin/tinymce/tinymce.min.js"></script>
<script type="text/javascript" src="plugin/tinymce/init-tinymce.js"></script>
</body>
</html>