-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
77 lines (76 loc) · 3.85 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
<?php
require_once('include/Class_DB.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 -->
<?php
include './include/menu_public.php';
?>
<!-- END -->
<!-- Main content -->
<div id="content">
<div class="loginWrapper">
<div class="left">
<div class="message blue">
Follow <a target="_blank" 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 Buildlog. <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/>
<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>