-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
189 lines (180 loc) · 6.63 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html>
<head>
<title>HTML E-Mail Signature Generator</title>
<meta charset="utf-8">
<!-- Styles -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/app.css" />
<!-- Styles -->
</head>
<body style="background-color: #f3f3f3; font-size:12px;">
<div class="container mt-2">
<div class="row">
<div class="col-lg-4 order-lg-1 order-sm-2">
<!-- Generator Form -->
<form id="DATA">
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12">
<div class="form-group">
<label>Select Theme</label>
<select name="THEMES" id="THEMES" class="form-control">
<option vlue="0">Select Theme for preview</option>
<option value="template-1.html">Template 1</option>
<option value="template-2.html">Template 2</option>
</select>
</div>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12">
<div class="form-group">
<label>Name Surname</label>
<input type="text" name="ADSOYAD" id="ADSOYAD" value="" class="form-control" autocomplete="off" />
</div>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12">
<div class="form-group">
<label>Title</label>
<input type="text" name="TITLE" id="TITLE" value="" class="form-control" autocomplete="off" />
</div>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12 mb-3">
<div class="form-group mb-0">
<label>E-Mail</label>
<input type="text" name="EPOSTA" id="EPOSTA" value="" class="form-control" placeholder="test.user" autocomplete="off" />
</div>
<small>Blank for hide.</small>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12 mb-3">
<div class="form-group mb-0">
<label>Mobile Phone</label>
<input type="text" name="CEPTELEFONU" id="CEPTELEFONU" value="+90 " class="form-control telefon" autocomplete="off" />
</div>
<small>Blank for hide.</small>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12 mb-3">
<div class="form-group mb-0">
<label>Phone</label>
<input type="text" name="TELEFON" id="TELEFON" value="+90 212 912 46 40" class="form-control telefon" autocomplete="off" />
</div>
<small>Blank for hide.</small>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12">
<div class="form-group">
<label>Address</label>
<input type="text" name="ADRES" id="ADRES" value="" class="form-control" autocomplete="off" />
</div>
</div>
</div>
<!-- INPUT -->
<hr />
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12">
<div class="form-group">
<label>Logo File URL</label>
<input type="text" name="LOGO" id="LOGO" value="https://www.adjans.com.tr/content/themes/adjans_2020/images/adjans-black.svg" class="form-control" autocomplete="off" />
</div>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12">
<div class="form-group">
<label>Web URL</label>
<input type="text" name="DOMAIN" id="DOMAIN" value="https://www.adjans.com.tr/" class="form-control" autocomplete="off" />
</div>
</div>
</div>
<!-- INPUT -->
<!-- INPUT -->
<div class="row">
<div class="col-lg-12 col-sm-12 mt-2">
<div class="form-group">
</div>
</div>
</div>
<!-- INPUT -->
</form>
<!-- Generator Form -->
</div>
<div class="col-lg-8 order-lg-2 order-sm-1">
<div class="row mb-4 mt-1">
<div class="col-lg-12"><h2 class="text-center">E-Mail Signature Creator</h2></div>
</div>
<div class="row">
<div class="col-lg-12">
<div id="ONIZLEME" style="margin-top:25px;padding:10px; border:3px dashed red;background-color: #fff; border-radius:10px; margin-bottom:20px; min-height: 158px;"><h5 class="text-center" style="margin-top:100px">For view HTML preview click to <em>Generate</em>...</h5></div>
</div>
</div>
<div class="row">
<div class="col-lg-4 text-left">
<button type="button" id="OLUSTUR" class="btn btn-block btn-success">Generate</button>
</div>
<div class="col-lg-8 text-right">
<button id="PREVIEW" class="btn btn-secondary" disabled>Preview</button>
<button class="btn btn-primary download-signatura" disabled>Download HTML</button>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="previewModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content modal-large">
<div class="modal-header" style="background-color: #afafaf;">
<h5 class="modal-title" id="exampleModalLabel">HTML Preview</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="background-color: #afafaf;">
<div id="MODAL_BOX" style="background-color: #fff; border:1px solid #b4b4b4; padding:5px;"></div>
</div>
<div class="modal-footer" style="background-color: #afafaf;">
<button type="button" class="btn btn-primary download-signatura" disabled>Download HTML</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal -->
<!-- Templates -->
<!-- <script type="text/template7" id="MailTemplate" src="templates/template-1.js"></script> -->
<!-- Templates -->
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.1/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<script src="js/template7.min.js"></script>
<script src="js/filesaver.js"></script>
<script src="js/app.js"></script>
<!-- Scripts -->
</body>
</html>