-
Notifications
You must be signed in to change notification settings - Fork 40
/
about.php
94 lines (80 loc) · 4.15 KB
/
about.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
require_once('include/debug.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="include/style.css" media="screen"/>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="img/apple.png" />
<title>About - ecDB</title>
<?php include_once("include/analytics.php") ?>
</head>
<body>
<div id="wrapper">
<!-- Header -->
<div id="header">
<div class="logoWrapper">
<a href ="."><span class="logoImage"></span></a>
</div>
</div>
<!-- END -->
<!-- Main menu -->
<div id="menu">
<ul>
<li><a href="."><span class="icon medium key"></span> Login</a></li>
<li><a href="register.php"><span class="icon medium user"></span> Register</a></li>
<li><a href="about.php" class="selected"><span class="icon medium document"></span> About</a></li>
<li><a href="/blog"><span class="icon medium docLinesStright"></span> Blog</a></li>
</ul>
</div>
<!-- END -->
<!-- Main content -->
<div id="content">
<div class="loginWrapper">
<div class="left">
<div class="message blue">
Check out the new <a href="/blog">ecDB blog.</a> Or follow <a href="https://twitter.com/#!/ecDBnet">@ecDBnet</a> at Twitter to get the latest updates!
</div>
<h1>What is ecDB?</h1>
ecDB is basically a place where you, as an electronics hobbyist (or professional) can add your own components to your personal database to keep track of what components you own, where they are, how many you own and so on.
<br /><br />
<a href="img/about/index.png"><img src="img/about/index_thumbnail.png"></a>
<a href="img/about/add.png"><img src="img/about/add_thumbnail.png"></a><br /><br />
<h1>Who & Why?</h1>
ecDB is created by <a target="_blank" href="http://nilsf.se">Nils Fredriksson</a> and designed by <a target="_blank" href="http://www.buildlog.eu">Buildlog</a>. <br /><br />
Me, Nils, have always wanted to have a system like this to keep track of what component I own. Before I created this system I (I guess you too...) had to dig through boxes filled with components to maybe find that component I needed. This is an unnecessary task to do, it not only takes time, and it also can be really frustrating not to find that component you are looking for. So I ended up creating this website where I easily can keep track of my components!
<br /><br />
<h1>What does it cost?</h1>
ecDB is completely free!<br />
But if you like ecDB you can use this button to donate us some money.
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="7ZT5UY5XMHA52">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
</form>
<br />
<h1>Is ecDB really done?</h1>
No! ecDB is still under development. Here are some of the upcoming features:<br /><br />
- Public components - a place where you easily can trade components.<br />
- View to physically print the personal database. Old-school typewritten text and nice colums!<br />
- Datasheet and picture uploading.<br />
- Advanced component search with parameters.<br />
- Log for each component. See when the component last was used/edited/bought etc.<br />
- Barcode implementation for easy storage management.<br />
- Import and export of personal database to text/spreadsheet.<br />
- Quick edit function of component data directly from the database view.<br />
- Add personal categories and fields.<br />
- Borrow component data from other components in the database to easily add components.
</div>
<div class="right"></div>
</div>
</div>
<!-- END -->
<!-- Text outside the main content -->
<?php include 'include/footer.php'; ?>
<!-- END -->
</div>
</body>
</html>