Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12694 anikendra 1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
	<meta charset="utf-8">
5
	<title>Welcome to eCOmmerce System - LetsGoMo</title>
6
 
7
	<style type="text/css">
8
 
9
	::selection{ background-color: #E13300; color: white; }
10
	::moz-selection{ background-color: #E13300; color: white; }
11
	::webkit-selection{ background-color: #E13300; color: white; }
12
 
13
	body {
14
		background-color: #fff;
15
		margin: 40px;
16
		font: 13px/20px normal Helvetica, Arial, sans-serif;
17
		color: #4F5155;
18
	}
19
 
20
	a {
21
		color: #003399;
22
		background-color: transparent;
23
		font-weight: normal;
24
	}
25
 
26
	h1 {
27
		color: #444;
28
		background-color: transparent;
29
		border-bottom: 1px solid #D0D0D0;
30
		font-size: 19px;
31
		font-weight: normal;
32
		margin: 0 0 14px 0;
33
		padding: 14px 15px 10px 15px;
34
	}
35
	h2 {
36
		color: #444;
37
		background-color: transparent;
38
		font-size: 15px;
39
		font-weight: normal;
40
		margin: 0 0 5px 0;
41
		padding: 4px 5px 0px 5px;
42
	}
43
 
44
	code {
45
		font-family: Consolas, Monaco, Courier New, Courier, monospace;
46
		font-size: 12px;
47
		background-color: #f9f9f9;
48
		border: 1px solid #D0D0D0;
49
		color: #002166;
50
		display: block;
51
		margin: 14px 0 14px 0;
52
		padding: 12px 10px 12px 10px;
53
	}
54
 
55
	#body{
56
		margin: 0 15px 0 15px;
57
	}
58
 
59
	p.footer{
60
		text-align: right;
61
		font-size: 11px;
62
		border-top: 1px solid #D0D0D0;
63
		line-height: 32px;
64
		padding: 0 10px 0 10px;
65
		margin: 20px 0 0 0;
66
	}
67
 
68
	#container{
69
		margin: 10px;
70
		border: 1px solid #D0D0D0;
71
		-webkit-box-shadow: 0 0 8px #D0D0D0;
72
	}
73
	</style>
74
</head>
75
<body>
76
 
77
<div id="container">
78
	<h1>Welcome to eCommerce Solutions!</h1>
79
 
80
	<div id="body">
81
		<h2>Switch eCommerce :</h2>
82
 
83
		<p><select name="switchplatform" id="switchplatform" onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
84
		<option value="">Select eCommerce</option>
85
			<option value="<?=base_url()?>welcome/r/prestashop">Prestashop</option>
86
			<option value="<?=base_url()?>welcome/r/magento">Magento</option>
87
			<option value="<?=base_url()?>welcome/r/opencart">Opencart</option>
88
		</select></p>
89
		</div>
90
 
91
	<p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds</p>
92
</div>
93
 
94
</body>
95
</html>