This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csv_xls_files.html
79 lines (65 loc) · 2.64 KB
/
csv_xls_files.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Export Registered Users List as CSV File</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css\style.css">
<script src="jquery/jquery-1.3.2.js" type="text/javascript"></script>
<script src="javascripts/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<a href="http://1-cloud.net/"><img class="logo" src="images\onecloud_Logo.png" alt="Enabling the next-generation virtualized Data Center" style="height: 95px; width: 135px;"></a>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-12">
<img src="images\header_band.png" alt="Header band" style="width: 100%;">
</div>
</div>
<br/>
<br/>
<div class="row">
<div class="col-md-6">
<p><center><b><span style="color:blue;font-weight:bold; font-size:15px;">Export Registered Users List as CSV File</span></b></center></p>
</div>
<div class="col-md-6">
<center><a href="export_csv.php"><input type="submit" class="button" value="Export as CSV" style="border-radius: 8px"></a></center>
</div>
</div>
<br/>
<br/>
<br/>
<div class="row">
<div class="col-md-6">
<p><center><b><span style="color:blue;font-weight:bold; font-size:15px;">Export Registered Users List as Excel File</span></b></center></p>
</div>
<div class="col-md-6">
<center><a href="export_xls.php"><input type="submit" class="button" value="Export as XLS" style="border-radius: 8px"></a></center>
</div>
</div>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<hr/>
<div id="footer">
<a href="https://www.linkedin.com/company/one-cloud-consulting" target="_blank"><img title="LinkedIn" src="images/linkedinLogo.png" alt="LinkedIn" width="40" height="40" /></a>
<a href="https://twitter.com/OneCloudC" target="_blank"><img title="Twitter" src="images/twitterLogo.png" alt="Twitter" width="40" height="40" /></a>
<a href="https://www.facebook.com/onecloudconsulting" target="_blank"><img title="Facebook" src="images/facebookLogo.png" alt="Facebook" width="40" height="40" /></a>
<a href="https://www.youtube.com/channel/UClmrYAPEBC6yc4_3BKNYggA" target="_blank"><img title="YouTube" src="images/youtubeLogo.png" alt="YouTube" width="40" height="40" /></a>
<br/>© 2016 OneCloud Consulting. All rights reserved
</div>
</div>
</body>
</html>