forked from erming/resume-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
120 lines (113 loc) · 3.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Edit</title>
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css">
<link rel="stylesheet" href="json-builder/css/json-builder.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="preload">
<aside id="sidebar">
<div id="panel">
<div class="inner">
<div class="actions">
<button id="export" class="button" data-placement="bottom" title="Download JSON"></button>
<button id="reset" class="button hidden">Reset</button>
<button id="clear" class="button">Clear</button>
</div>
<div class="theme">
Current theme:
<strong id="theme-current"></strong>
</div>
<div class="tabs">
<a href="#editor" data-toggle="tab" class="active">Editor</a>
<a href="#themes" data-toggle="tab">Themes</a>
</div>
<div class="view">
<a href="" class="active" data-type="html">HTML</a>
<a href="" data-type="json">JSON</a>
</div>
</div>
</div>
<div id="editor" class="tab-pane active">
<div class="tse-scrollable">
<div id="form" class="tse-content"></div>
</div>
</div>
<div id="themes" class="tab-pane">
<div class="tse-scrollable">
<div id="themes-list" class="tse-content">
<a href="" class="item">
<span class="version"></span>
<span class="name"></span>
</a>
</div>
</div>
</div>
</aside>
<div id="preview">
<div id="overlay"></div>
<textarea id="json-editor"></textarea>
<div id="iframe-wrapper">
<iframe id="iframe"></iframe>
</div>
</div>
<div class="modal" id="register-modal" tabindex="-1">
<div class="modal-dialog" style="width: 400px;">
<form class="register-form">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Register an Account</h4>
</div>
<div class="modal-body">
<input type="text" class="form-control register-email" placeholder="Email" required autofocus><br />
<input type="text" class="form-control register-username" placeholder="Username" required><br />
<input type="password" class="form-control register-password" placeholder="Password" required>
</div>
<div class="modal-footer">
<button type="submit" class="button">Register</button>
</div>
</div>
</form>
</div>
</div>
<div class="modal" id="login-modal" tabindex="-1">
<div class="modal-dialog" style="width: 400px;">
<form class="login-form">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Login to your Account</h4>
</div>
<div class="modal-body">
<input type="text" class="form-control login-email" value="thomasalwyndavis@gmail.com" placeholder="Email" required autofocus><br />
<input type="password" class="form-control login-password" placeholder="Password" value="" required>
</div>
<div class="modal-footer">
<button type="submit" class="button">Login</button>
</div>
</form>
</div>
</div>
</div>
<div class="modal" id="publish-modal" tabindex="-1">
<div class="modal-dialog" style="width: 400px;">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Publish</h4>
</div>
<div class="modal-body">
<p>Publishing...</p>
</div>
</div>
</div>
</div>
<script src="js/libs.min.js"></script>
<script src="json-builder/src/builder.js"></script>
<script src="json-builder/src/builder.templates.js"></script>
<script src="js/main.js"></script>
</body>
</html>