diff --git a/_tutorials-javascript/hivesigner.md b/_tutorials-javascript/hivesigner.md
index 46dd3ff9fed5347175d4dc435c6ec9d2b32053d5..5371c523e01d3dbccd11ead614109ed8f6b39345 100644
--- a/_tutorials-javascript/hivesigner.md
+++ b/_tutorials-javascript/hivesigner.md
@@ -28,15 +28,15 @@ Learn more about [Hivesigner operations here](https://github.com/ledgerconnect/h
 
 ## Steps
 
-1.  [**Hivesigner Dashboard**](#sc-dashboard) Create account for application and set up dashboard
-1.  [**Initialize Hivesigner**](#init-sc) Initialize SDK in your application code
+1.  [**Hivesigner Dashboard**](#dashboard) Create account for application and set up dashboard
+1.  [**Initialize Hivesigner**](#init) Initialize SDK in your application code
 1.  [**Login URL**](#login-url) Form login url for user
 1.  [**Request token**](#request-token) Request token with login url
 1.  [**Set token**](#set-token) Set or save token for future requests
 1.  [**Get user data**](#get-user) Get user details with token
 1.  [**Logout**](#logout) Logout user and clear token
 
-#### 1. Hivesigner Dashboard<a name="sc-dashboard"></a>
+#### 1. Hivesigner Dashboard<a name="dashboard"></a>
 
 Hivesigner is unified authentification system built on top of Hive.
 Layer to ensure easy access and setup for all application developers as well as secure way for users to interact with Hive apps.
@@ -45,29 +45,17 @@ Setting up Hivesigner in your app is straight-forward process and never been thi
 
 Here are the steps that helps you to setup new app:
 
-1a. Visit [Hivesigner Dashboard](https://hivesigner.com/dashboard) and login with your Hive credentials
+1a. Visit [Hivesigner Dashboard](https://hivesigner.com/profile) and login with your Hive credentials for your app
 
-![hivesigner_login](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_login.png)
+![hivesigner_login](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png)
 
-1b. You will see Applications and Developers section, in Developers section click on `My Apps`
+1b. You will see Account type, User and Application section, in Application section fill out details of App
 
-![hivesigner_dashboard](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_dashboard.png)
+![hivesigner_dashboard](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png)
 
-![hivesigner_new_app](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_new_app.png)
+1c. Give your app name, description, icon image link, website (if available) and Redirect URI(s)
 
-1c. Create New App using Hivesigner, which will help you create new Hive account for your application. Let's call it `demo-app` for this tutorial purpose.
-
-![hivesigner_account_create](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_account_create.png)
-
-Account creation fee will be deducted from your balance, make sure you have enough funds to complete account creation.
-
-Next step is to login with account which has enough balance to pay for account creation fee.
-
-![hivesigner_signin](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_signin.png)
-
-1d. Give your app name, description, icon image link, website (if available) and Redirect URI(s)
-
-![hivesigner_myapps](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_myapps.png)
+![hivesigner_myapps](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png)
 
 Application name and description should give users clear understanding what permissions it requires and what is the purpose of the app.
 
@@ -80,7 +68,7 @@ This is typical backend web development, we hope you know how to set up your bac
 
 *   Disclaimer: All images/screenshots of user interface may change as Hivesigner evolves
 
-#### 2. Initialize Hivesigner<a name="init-sc"></a>
+#### 2. Initialize Hivesigner<a name="init"></a>
 
 Once you have setup account for new application, you can setup application with Hivesigner authentification and API processes.
 To do that, you will need to install `hivesigner` nodejs package with `npm i hivesigner`.
@@ -111,7 +99,7 @@ Now that `hivesigner` is initialized we can start authentication and perform sim
 
 #### 7. Logout<a name="logout"></a>
 
-> In order to logout, you can use `revokeToken` function from sc2-sdk.
+> In order to logout, you can use `revokeToken` function from hivesigner.
 
 **That's all there is to it.**
 
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6fd292cef605fbbdac2a1a7a9f47165280f56de
Binary files /dev/null and b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4e420341ee31063280f529312188c885fc9240a
Binary files /dev/null and b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e30cf5c87498b6e8fe94c7cefcb1b964972e905
Binary files /dev/null and b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_account_create.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_account_create.png
deleted file mode 100755
index 8f658a3adc4e00db434728d74215ae76b00eb970..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_account_create.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_dashboard.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_dashboard.png
deleted file mode 100755
index 6fbe48f70ca2bd9f3c3c4d5c48c5a0afd2f21c92..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_dashboard.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_login.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_login.png
deleted file mode 100755
index 60fd9229f746ae035f624014b771186e6de75287..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_login.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_myapps.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_myapps.png
deleted file mode 100755
index 5d240a8a5b195da63518f268ba4617896e25f31b..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_myapps.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_new_app.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_new_app.png
deleted file mode 100755
index c45dcfa8fffb8a184d4698de5647d60445c76ae9..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_new_app.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_signin.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_signin.png
deleted file mode 100755
index da69b0140b3b529850c39d64695f9455fc8fbc49..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/steemconnect_signin.png and /dev/null differ