-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
231 lines (200 loc) · 10.5 KB
/
help.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="res/ico/favicon.ico" type="image/x-icon">
<link rel="icon" href="res/ico/favicon.ico" type="image/x-icon">
<title>My Family Tree</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="vendor/fontawesome/css/all.min.css" rel="stylesheet">
<link href="vendor/fontawesome/css/fontawesome.css" rel="stylesheet">
<link href="css/general.css" rel="stylesheet">
<style type="text/css">
.help{
max-width: 80%;
}
@media only screen and (max-width: 700px) {
.help {
max-width: 100%;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<div class="navbar-brand nav-app-name"><img src="res/img/header.svg" class="nav_logo" >My Family Tree</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="create.html">Create</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="help.html">Help <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container" style="padding-top: 4rem;">
<div class="row text-center">
<div class="col-12">
<div class="mycard">
<img src="res/img/header.svg" class="intro-image">
<h1 class="mt-5 nav-app-name primary_color">My Family Tree</h1>
<h4 style="margin-top: 2rem;">Help</h4>
<ul class="mylist-unstyled">
<li>
<a href="#gettingstarted">Getting Started</a>
</li>
<li>
<a href="#menu">Menus</a>
</li>
<li>
<a href="#details">Details</a>
</li>
<li>
<a href="#addmember">Add Member</a>
</li>
<li>
<a href="#navigating">Navigating</a>
</li>
</ul>
<h5 class="text-danger">Important note: Project still doesn't support database. So whatever changes you do does not get saved. Once you're done with the tree, export as PDF to save it locally.</h5>
<hr>
<p class="secondary_color"><i><strong>Pro tip:</strong> Please try to use a device with larger display - tablet or a laptop. Although it is possible to create trees in smaller devices, due to the screen limitation, tree creation & viewing get inconvenient.</i></p>
</div>
</div>
</div>
<!-- Help Doc -->
<div class="row">
<!-- Getting Started -->
<div class="col-12" id="gettingstarted">
<div class="mycard help">
<div class="gs">
<h4>Getting Started</h4>
<p class="secondary_color"> To get started, click on the <b>"Get Started"</b> button at the home page, or the <b>"Create"</b> link in the navgation bar</p>
<div class="help_img_container text-center">
<img src="res/help_files/gs1.png" class="help_img img-thumbnail"><br><br>
<h4 class="secondary_color text-center">OR</h4>
<img src="res/help_files/gs2.png" class="help_img img-thumbnail">
</div>
</p>
</div>
</div>
</div>
<!-- Menu -->
<div class="col-12" id="menu">
<div class="mycard help">
<div class="ac">
<h4>Menus</h4>
<p class="secondary_color">There are three <b><i>Menus</i></b></p>
<div class="help_img_container text-center">
<img src="res/help_files/menu.png" class="help_img img-thumbnail">
</div>
<br>
<p class="secondary_color"> 1. Use the Menu numbered 1 to open up options to export your tree. Currently, you can export tree as <b><i>"PDF"</i></b> or as a <b><i>"PNG"</i></b> file. <i>More export options will be added.</i> </p>
<p class="secondary_color"> 2. Use the Menu numbered 2 to open up options for a particular tree node - member(Parent/Child). Use this menu to <strong>Edit</strong>, <strong>Add</strong> or <strong>Remove</strong> a member.</p>
<p class="secondary_color">3. Menu numbered 3 is a context menu and is accessible only through right-click button of the mouse and may not be accessible to all devices. The context menu consists of the same menu items as that in menu 2.</p>
</div>
</div>
</div>
<!-- Details -->
<div class="col-12" id="details">
<div class="mycard help">
<div class="ed">
<h4>Details</h4>
<p class="secondary_color">You can easily view or edit the details of a member</p>
<p class="secondary_color">To <i>view</i> the details of a member, click/tap anywhere on the member's card. This will bring up the details of the member.</p>
<p class="secondary_color">To <i>edit</i> the details of a member, click on the menu (<img src="res/help_files/ssmmenu.png" style="width: 30px; height: 15px; object-position: center;object-fit: contain;">) within the member's card and select the "Edit" option. This will bring up the details of the member in an editable form.<br> As of now, user can only edit the <strong>Name</strong> attribute. All other fields will be in working condition soon.</p>
<p class="secondary_color">Finally, to save the changes, click on the arrow (<img src="res/help_files/arrow.png" style="width: 30px; height: 15px; object-position: center;object-fit: contain;">) at the top right corner. Your member node should update automatically.</p>
<div class="help_img_container text-center">
<img src="res/help_files/edit.jpg" class="help_img img-thumbnail">
</div>
</div>
</div>
</div>
<!-- Add Member -->
<div class="col-12" id="addmember">
<div class="mycard help">
<div class="adm">
<h4>Add Member</h4>
<p class="secondary_color">To add a member of the family, use the "Add Child" option from the node menu.</p>
<p class="secondary_color">If member is the first generation, on the node of "Family Name" add the first member. For any other generation, adding a child node automatically makes the new child node as the child of that node.</p>
<div class="help_img_container text-center">
<img src="res/help_files/addmember.gif" class="help_img img-thumbnail">
</div>
<br>
<hr>
<br>
<h5>Adding Spouse</h5>
<p class="secondary_color">You can add spouse in two ways: 1. Explicitly Specifying when creating a child node, or 2. Grouping the two spouse nodes together.</p>
<br>
<p class="secondary_color"><strong><u>Method 1:</u></strong> To add a spouse, goto the node whose spouse you want to add. Click on the node options and select the "Add Child" option. Then on the generated child node, "Edit" the child node - Enter the details and on the bottom, Select the "Spouse" option. This option differentiates the Spouse node from the ordinary child nodes.<br> <strong>If using this method, do not create a child node using the spose node.</strong></p>
<div class="help_img_container text-center">
<img src="res/help_files/AddSpouse.gif" class="help_img img-thumbnail">
</div>
<br>
<p class="secondary_color"><strong><u>Method 2:</u></strong> <i>The more user friendly and quicker way to add spouse.</i> To add a spouse using the second method, go to the parent node, add both child node and the spouse node. Now, Click/Tap and holding on the spouse node, drag it over to the associated node and release hold. It asks whether to "Add to Group" ot "Add to Child", Select "Add to Group".<br><strong>Unlike in Method 1, here both nodes in the grouping can create child nodes.</strong></p>
<div class="help_img_container text-center">
<img src="res/help_files/AddSpouse2.gif" class="help_img img-thumbnail">
</div>
</div>
</div>
</div>
<!-- Navigation -->
<div class="col-12" id="navigating">
<div class="mycard help">
<div class="nvg">
<h4>Navigating</h4>
<p class="secondary_color">When the tree gets too big, it doesnt fit in the whole screen. To navigate through the tree, click and hold on any empty area of the tree (outside the nodes) and drag in ay direction.</p>
<div class="help_img_container text-center">
<img src="res/help_files/navigate.gif" class="help_img img-thumbnail">
</div>
</div>
</div>
</div>
<!-- NOTEs -->
<div class="col-12" id="notessection">
<div class="mycard help">
<div class="nts">
<p class="secondary_color">More guides and FAQs section coming soon. Until then contact me on my email, whatsapp or visit my GitHub and stay tuned for updates</p>
</div>
</div>
</div>
</div>
<!-- <div class="row text-center">
<div class="col-12">
<div class="mycard">
<h4>Contributors</h4>
<p></p>
</div>
</div>
</div> -->
</div>
<div class="myfooter">
<div class="text-center">
<span class="text-muted"><img src="res/img/peace.svg" class="footer_img"> Suan Tonsing
<span id="copyright"><script>document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))</script></span>
</span>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.slim.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>