-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSignUp.fxml
More file actions
55 lines (53 loc) · 2.61 KB
/
Copy pathSignUp.fxml
File metadata and controls
55 lines (53 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.RadioButton?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" style="-fx-background-color: #008080;" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="SignUpController">
<children>
<AnchorPane layoutY="77.0" prefHeight="375.0" prefWidth="750.0" style="-fx-background-color: #ffffff;">
<children>
<RadioButton fx:id="admin" layoutX="410.0" layoutY="114.0" mnemonicParsing="false" text="Администратор">
<font>
<Font name="Arial Bold" size="13.0" />
</font>
</RadioButton>
</children>
</AnchorPane>
<Text fill="WHITE" layoutX="208.0" layoutY="45.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Регистрация пользователя">
<font>
<Font name="Arial" size="28.0" />
</font>
</Text>
<TextField fx:id="login_field" layoutX="200.0" layoutY="152.0" promptText="Логин" />
<TextField fx:id="password_field" layoutX="200.0" layoutY="224.0" promptText="Пароль" />
<TextField fx:id="name_field" layoutX="401.0" layoutY="152.0" promptText="ФИО" />
<Button fx:id="SignUp" layoutX="283.0" layoutY="318.0" mnemonicParsing="false" prefHeight="35.0" prefWidth="204.0" text="Добавить">
<font>
<Font name="Arial" size="15.0" />
</font>
</Button>
<RadioButton fx:id="doc" layoutX="410.0" layoutY="216.0" mnemonicParsing="false" text="Врач">
<font>
<Font name="Arial Bold" size="13.0" />
</font>
</RadioButton>
<RadioButton fx:id="registr" layoutX="410.0" layoutY="240.0" mnemonicParsing="false" text="Мед. регистратор">
<font>
<Font name="Arial Bold" size="13.0" />
</font>
</RadioButton>
<RadioButton fx:id="nurse" layoutX="410.0" layoutY="264.0" mnemonicParsing="false" text="Медсестра">
<font>
<Font name="Arial Bold" size="13.0" />
</font>
</RadioButton>
<Button fx:id="BackButton" layoutX="27.0" layoutY="23.0" mnemonicParsing="false" text="Назад">
<font>
<Font name="Arial" size="13.0" />
</font>
</Button>
</children>
</AnchorPane>