0

I want to add a form for entering Mobile Number. But want to ask the user to enter the country code as well so that a verification SMS can be sent over the number.

What I want is:

Enter Your Mobile Number. : |(country code)| |(mobile no.)|

How can I do this?

Himanshu K
  • 224
  • 1
  • 6
  • 17

1 Answers1

1

sample code:

<input class="input" ng-model="countryCode" placeholder="Country Code"></input>
<input class="input" ng-model="mobileNumber" placeholder="Mobile Number"></input>
HARITHA UPPARA
  • 274
  • 2
  • 9