예제 #1
0
파일: forms.py 프로젝트: djds23/HTML5.py
    def __init__(self,
                 elems=[],
                 action=None,
                 autocomplete=None,
                 novalidate=False):

        _init_names(self, locals())
예제 #2
0
파일: forms.py 프로젝트: djds23/HTML5.py
 def __init__(self,
              type='text',
              name='',
              value='',
              size=None,
              disabled=False,
              maxlength=None,
              readonly=None,
              autocomplete=None,
              autofocus=False):
     _init_names(self, locals())
     '''the following are attributes for <input>
예제 #3
0
 def __init__(self, type='text', name='', value='', size=None, disabled=False,
              maxlength=None, readonly=None, autocomplete=None,
              autofocus=False):
     _init_names(self, locals())
     '''the following are attributes for <input>
예제 #4
0
 def __init__(self, elems=[], action=None, autocomplete=None, novalidate=False):
              
     _init_names(self, locals())