This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage1.php
executable file
·80 lines (54 loc) · 2.44 KB
/
page1.php
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
<?php
///////////////////////////////////////////////////////////////
//For creating the 1st page which includes the small sized tag/
///////////////////////////////////////////////////////////////
if(isset($_GET['type'])!='ajax'){
include 'header.php';
echo "<div id='main-content'>";
}
?>
<div id="output" style="display:none;">waiting for action</div>
<div class="ajax">
<div class="main clearfix">
<div class="column">
</div>
<div class="column column-a column-marg">
<form>
<div><input class="form-control input-lg" type="text" id="prefix" placeholder="Prefix" /></div>
<div class="col-md-5"><input class="form-control input-lg" type="text" id="fname" placeholder="First Name" /></div>
<div class="col-md-5"><input class="form-control input-lg" type="text" id="lname" placeholder="Last Name" /></div>
<div class="col-md-12"><input class="form-control input-lg" type="text" id="title1" placeholder="Job Title" /></div>
<div class="col-md-12"><input class="form-control input-lg" type="text" id="Department1" placeholder="Department" /></div>
<div class="col-md-6"><input class="form-control input-lg" type="text" id="email" placeholder="Email" /> </div>
<div class="col-md-3"><input class="form-control input-lg" type="text" id="ext" placeholder="EXT." /></div>
<div class="col-md-3"> <input class="form-control input-lg" type="text" id="bleep" placeholder="Bleep" /></div>
</form>
</div>
<div class="column">
</div>
<div class="column-b">
<input name="go" class="button-x" value="Create" onclick="getSuccessOutput();small();" type="button">
<button id="printer" class="printer" onclick="Printed()">Print</button>
</div>
<div class="column-x">
<canvas class="canvas" id="e1" width="1700" height="413"></canvas>
<img id="tag" src="images/small-tag.png" alt="" width="150" height="364">
<div id="printHere" style="margin-bottom:20px;">
</div>
</div>
<script src="js/myjs.js"></script>
</div><!-- /main -->
</div><!-- /ajax -->
<div class="bubblingG">
<span id="bubblingG_1">
</span>
<span id="bubblingG_2">
</span>
<span id="bubblingG_3">
</span>
</div>
<?php
if($_GET['type']!='ajax'){
echo "</div>";
include 'footer.php';
}?>