-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_manual.R
56 lines (54 loc) · 2.31 KB
/
user_manual.R
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
style = paste0("color:white;margin-left:0em;")
user_manual = HTML(
paste(
tags$em(tags$b(
span("User manual:", style = style)
)),
tags$em(
span("1. Input Your Master Password to access the encrypted Database. Master Password is needed for every operation!", style = style)
),
tags$em(
span("2. You can Keep the Master Passward continuously, or Clear it after every operation.", style = style)
),
tags$em(
span("3. Encrypeted database will be created together with the first Record you provide.", style = style)
),
tags$em(
span("4. You can Edit a Record by providing Profile and Login. You select Record to be edited and press Edit. You can change Profile, Login and Password and then you need to Confirm the Edit procedure.", style = style)
),
tags$em(
span("5. You can Delete a Record by providing Profile and Login. You need to confirm the Delete procedure.", style = style)
),
tags$em(
span("6. You can Search for Profiles in the Database. You can Delete and Type inside the Search field.", style = style)
),
tags$em(
span("7. You can Search for Logins of the chosen Profile.", style = style)
),
tags$em(
span("8. You can Load the Record to visualize the Password.", style = style)
),
tags$em(
span("9. You can Close the Search section afterwards.", style = style)
),
tags$em(
span("10. You can Download the Encrypted Database.", style = style)
),
tags$em(
span("11. You can Remove the Duplicates from the Encrypted Database.", style = style)
),
tags$em(
span("12. You can use the Random Username Generator and the Random Password Generator to help you out.", style = style)
),
tags$em(
span("13. You can Generate many different Usernames and add Number at the end if you desire.", style = style)
),
tags$em(
span("14. You can Generate Passwords only with Letters and Numbers, or they can also contain Special characters.", style = style)
),
tags$em(
span("15. All Fields are displayed in a special font to improve readability between symbols such 0 (digit zero) and O (upper case o), and I (upper case i) and l (lower case L).", style = style)
),
sep = "<br/>"
)
)