0
私は既存のAPIとバックエンドシステムを持っています。私はフロントエンド部分を(ionicとangularを使ってモバイルアプリケーションを作成しています)行っています。顧客に電話でメッセージを送信する。ionicとangularjsを使用してテキストを送信することによってパスワードをリセットしました
私は自分の携帯電話番号を入力できるようにパスワードのHTMLページをリセットしてから、APIに送信して顧客のIDを取得していますが、変更に関連するリンクを送信する方法はわかりませんお客様の電話にパスワードを入力します。
<ion-view title="resetPassword">
<ion-header-bar>
<h1 class="title">Reset your Password</h1>
</ion-header-bar>
<ion-content>
<form name="resetPwdData" novalidate>
<p>
Please enter your mobile number associated to this account !
</p>
<label class="item item-input">
<span class="input-label">Mobile Number</span>
<input type="text" ng-model="resetPwdData.mobile" required>
</label>
</form>
</ion-content>