]> git.zarvox.org Git - wp3.git/commitdiff
Add disclaimer so people know what their data will be used for.
authorDrew Fisher <drew.m.fisher@gmail.com>
Sun, 19 Jul 2009 04:48:01 +0000 (21:48 -0700)
committerDrew Fisher <drew.m.fisher@gmail.com>
Sun, 19 Jul 2009 04:48:01 +0000 (21:48 -0700)
newpersonwizard.py
pagenetid.py

index 820d47e21b86a799466889de046a2f13bfd52b37..56ebde53b9dcd9830ffcc84a2f61971d6240e66e 100644 (file)
@@ -12,7 +12,7 @@ class NewPersonWizard(QWizard):
                self.addPage(PageNetID())
                self.addPage(PageNewUserData())
                self.addPage(PageCommit(self,self.db))
-               self.resize(400,300)
+               self.resize(400,500)
                self.show()
 
 if __name__ == "__main__":
index 38f593ccbc3f6b38b689abad6d3c4f769f56da7f..48b5447181742d1f13afa5bef24739af84febf78 100644 (file)
@@ -7,10 +7,13 @@ class PageNetID(QWizardPage):
                self.instructions = QLabel("&Enter your NetID:")
                self.netid = QLineEdit()
                self.instructions.setBuddy(self.netid)
+               self.disclaimer = QLabel("This information is being collected to be distributed to residents of the Clements, Lechner, and McFadden dorms for the 2009-2010 school year.  By entering your NetID and other information into this database, you give permission for this information to be distributed to other residents who have also shared their personal information.\n\nThe information collected will be used to make the White Pages, a listing of contact information for residents of Clements, Lechner, and McFadden Halls, to be published later this year.")
+               self.disclaimer.setWordWrap(True)
                self.registerField("netid*", self.netid)
                self.grid = QGridLayout()
                self.grid.addWidget(self.instructions,0,0)
                self.grid.addWidget(self.netid,0,1)
+               self.grid.addWidget(self.disclaimer,1,0,1,2)
                self.setLayout(self.grid)
                self.setTitle("Move-in Wizard")
                self.setSubTitle("Enter your NetID:")