model: add Conversation, Account

Change-Id: Ia0717957d9b7489dd2b299ad9f8696e25b662ec7
diff --git a/jaas-client/src/components/AccountPreferences.js b/jaas-client/src/components/AccountPreferences.js
index f486dd9..5b6ae28 100644
--- a/jaas-client/src/components/AccountPreferences.js
+++ b/jaas-client/src/components/AccountPreferences.js
@@ -21,7 +21,7 @@
     const isJamiAccount = account.getType() === Account.TYPE_JAMI
     return (
       <React.Fragment>
-        <Typography variant="h2" component="h2">Jami account</Typography>
+        <Typography variant="h2" component="h2">{isJamiAccount ? "Jami account" : "SIP account"}</Typography>
 
         {isJamiAccount &&
           <JamiIdCard account={account} />}