22 lines
947 B
XML
22 lines
947 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="sms_account_phone_view_form" model="ir.ui.view">
|
|
<field name="name">sms.account.phone.view.form</field>
|
|
<field name="model">sms.account.phone</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Register your SMS account">
|
|
<sheet>
|
|
<h5>Enter a phone number to get an SMS with a verification code.</h5>
|
|
<group>
|
|
<field name="phone_number" placeholder="+1 555-555-555"/>
|
|
</group>
|
|
<footer>
|
|
<button string="Send verification code" name="action_send_verification_code" type="object" class="btn btn-primary"/>
|
|
<button string="Cancel" class="btn-secondary" special="cancel"/>
|
|
</footer>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|