You can try:
ClaimsManager.GetCurrentIdentity().IsAuthenticated
This will return if the user will be registered, but it looks like you need to know if they are a backend user, so maybe try:
ClaimsManager.GetCurrentIdentity().IsBackendUser
You will need this using the directive:
using Telerik.Sitefinity.Security.Claims;