1
1
<!DOCTYPE html>
2
2
< html >
3
3
< head >
4
- < title > Toolbox TP</ title >
4
+ < title > Indentity Access Management</ title >
5
+ < link href ="https://fonts.googleapis.com/css?family=Manjari:100,400,700&display=swap&subset=malayalam " rel ="stylesheet ">
6
+ < link rel ="stylesheet " type ="text/css " href ="./styles.css ">
5
7
</ head >
6
8
< body >
7
- < h4 > Toolbox TP Landing Page</ h4 >
9
+ < header id ="identity-access-management-toolbox-home ">
10
+ < a href ="/ " class ="logo ">
11
+ < img src ="./assets/logo.png " width ="75 ">
12
+ </ a >
13
+ < nav >
14
+ < ul >
15
+ < li > < a href ="#identity-access-management-toolbox-home " class ="active "> Home</ a > </ li >
16
+ < li > < a href ="#identity-access-management-toolbox-about "> About Toolbox</ a > </ li >
17
+ < li > < a href ="#identity-access-management-toolbox-features "> Features</ a > </ li >
18
+ < li > < a href ="#identity-access-management-toolbox-pricing "> Pricing</ a > </ li >
19
+ < li > < a href ="#identity-access-management-toolbox-contact "> Contact</ a > </ li >
20
+ </ ul >
21
+ </ nav >
22
+ < h4 class ="title title-top "> < span class ="title-toolbox "> Toolbox</ span > is < span class ="title-accessmgt "> Indentity Access</ span > </ h4 >
23
+ < h4 class ="title-second "> < span class ="title-accessmgt "> Management</ span > SaaS product</ h4 >
24
+ < h4 class ="title-third "> that allows easy < span class ="title-access "> access</ span > </ h4 >
25
+ < h4 class ="title-last "> to different tools.</ h4 >
26
+ < img src ="./assets/banner.png " class ="banner ">
27
+ </ header >
28
+ < div id ="identity-access-management-toolbox-about " class ="container about ">
29
+ < ul >
30
+ < li > All Productivity Tools at one place</ li >
31
+ < li > Jira, Confluence, Trello, TimeOff TS, Basecamp etc</ li >
32
+ < li > No more hussle & search for browser's bookmarks</ li >
33
+ </ ul >
34
+ < p >
35
+ Currently many organizations use many, if not countless, online services, tools, web apps etc to bring productivity to their employees daily work.
36
+ </ p >
37
+ < p >
38
+ For employees, if it brings productivity on one hand then on the other hand they need to manage all these tools so that they can access them conveniently.
39
+ </ p >
40
+ < p >
41
+ The current solution many employees use is the browsers default bookmarks. However, toolbox, bring all these tools at one place. All employees have to do is login to toolbox, where list of all the online services and tools can be viewed they need rather than going through inconvenient browser's default bookmark features they offer.
42
+ </ p >
43
+ </ div >
44
+ < div id ="identity-access-management-toolbox-features " class ="container features ">
45
+ < nav >
46
+ < ul >
47
+ < li > < a id ="tools " href ="#tools " onclick ="toggle_visibility('tools'); "> Tools Just One Click Away</ a > </ li >
48
+ < li > < a id ="searching " href ="#searching " onclick ="toggle_visibility('searching'); "> Realtime Search</ a > </ li >
49
+ < li > < a id ="adding " href ="#adding " onclick ="toggle_visibility('adding'); "> Add More Tools as You Like</ a > </ li >
50
+ < li > < a id ="employees " href ="#employees " onclick ="toggle_visibility('employees'); "> New Employees? No Worries. Adding Employees Can't Get Easier</ a > </ li >
51
+ </ ul >
52
+ </ nav >
53
+ < div class ="items ">
54
+ < img class ="screen tools " src ="./assets/tools.png ">
55
+ < img class ="hide screen searching " src ="./assets/searching.png ">
56
+ < img class ="hide screen adding " src ="./assets/adding-tools.png ">
57
+ < img class ="hide screen employees " src ="./assets/adding-employees.png ">
58
+ </ div >
59
+ </ div >
60
+ < div id ="identity-access-management-toolbox-pricing " class ="pricing ">
61
+ < p >
62
+ $1 Per Employee < br >
63
+ Per Month
64
+ </ p >
65
+ </ div >
66
+ < footer id ="identity-access-management-toolbox-contact ">
67
+ < ul >
68
+ < li > < a href ="#identity-access-management-toolbox-home "> Home</ a > </ li >
69
+ < li > < a href ="#identity-access-management-toolbox-about "> About Toolbox</ a > </ li >
70
+ < li > < a href ="#identity-access-management-toolbox-features "> Features</ a > </ li >
71
+ < li > < a href ="#identity-access-management-toolbox-pricing "> Pricing</ a > </ li >
72
+ < li > < a href ="#identity-access-management-toolbox-contact "> Contact</ a > </ li >
73
+ </ ul >
74
+ < ul class ="socials ">
75
+ < li > < a href =""> < img width ="50 " src ="./assets/twitter.png "> </ a > </ li >
76
+ < li > < a href =""> < img width ="50 " src ="./assets/facebook.png "> </ a > </ li >
77
+ < li > < a href =""> < img width ="50 " src ="./assets/reddit.png "> </ a > </ li >
78
+ < li > < a href =""> < img width ="50 " src ="./assets/contact.png "> </ a > </ li >
79
+ </ ul >
80
+ </ footer >
81
+ < script type ="text/javascript ">
82
+ <!--
83
+ function toggle_visibility ( el ) {
84
+ console . log ( el ) ;
85
+ var e = document . querySelector ( `.${ el } ` ) ;
86
+ let items = document . querySelectorAll ( '.screen' ) ;
87
+ console . log ( items ) ;
88
+ // item.classList.remove('show');
89
+ // item.classList.add('hide');
90
+
91
+ items . forEach ( item => {
92
+ item . classList . remove ( 'show' ) ;
93
+ item . classList . add ( 'hide' ) ;
94
+ } ) ;
95
+
96
+ // console.log(e.classList.contains('hide'));
97
+ if ( e . classList . contains ( 'hide' ) ) {
98
+ e . classList . remove ( 'hide' ) ;
99
+ e . classList . add ( 'show' ) ;
100
+ }
101
+ }
102
+ //-->
103
+ </ script >
8
104
</ body >
9
105
</ html >
0 commit comments