Exemplo n.º 1
0
    def islem_onayi_icin_parola_girisi(self):
        """
        Kullanıcının parolasını girdiği form oluşturulur.

        """

        if self.current.task_data['msg']:
            self.mesaj_kutusu_goster(_(u'Hatalı Parola Girişi'))
        _form = JsonForm(current=self.current, title=_(u'İşlem Onayı İçin Parola Doğrulama'))
        _form.parola = fields.String(
            _(u"Bu işlemi gerçekleştirebilmek için güncel parolanızı girmeniz gerekmektedir."))
        _form.dogrula = fields.Button(_(u"Parola Doğrula"))
        self.form_out(_form)
Exemplo n.º 2
0
    def islem_onayi_icin_parola_girisi(self):
        """
        Kullanıcının parolasını girdiği form oluşturulur.

        """

        if self.current.task_data['msg']:
            self.mesaj_kutusu_goster(_(u'Hatalı Parola Girişi'))
        _form = JsonForm(current=self.current,
                         title=_(u'İşlem Onayı İçin Parola Doğrulama'))
        _form.parola = fields.String(_(
            u"Bu işlemi gerçekleştirebilmek için güncel parolanızı girmeniz gerekmektedir."
        ),
                                     type="password")
        _form.dogrula = fields.Button(_(u"Parola Doğrula"))
        self.form_out(_form)