You need to sign in to do that
Don't have an account?

Create a Global Action that Displays a User's Business Card Information
can you please provide me step wise on how to complete this task .i am bit confused .....
You need to sign in to do that
Don't have an account?
https://developer.salesforce.com/forums/ForumsMain?id=906F0000000MLe0IAG
he 'BusinessCard' page must display the current user's first name, last name, email, phone, and title information using the appropriate Visualforce global variables.
The page should have an input field to enter an email address and a 'Send' button that allows users to quickly email their contact information to others. Implementing this requirement is optional for passing this challenge
<apex:page>
<apex:pageBlock >
<div>
<H2>Quick Share</H2>
<li>{!$User.FirstName} </li>
<li>{!$User.LastName} </li>
<li>{!$User.Email} </li>
<li>{!$User.Phone} </li>
<li>{!$User.Title} </li>
<input type="text" name="mail" value=" "/>
<input type="Button" value="Save"/>
</div>
</apex:pageBlock>
</apex:page>
Regards!
Notes(salesforce best practises) say that we should not use PageBlock for Mobile cards ?