File tree Expand file tree Collapse file tree 3 files changed +32
-7
lines changed Expand file tree Collapse file tree 3 files changed +32
-7
lines changed Original file line number Diff line number Diff line change 1
- ipykernel
2
1
bqplot
3
- numpy
2
+ ipykernel
3
+ ipyleaflet
4
4
jupyter_client
5
- nbsphinx >= 0.2.13
5
+ matplotlib
6
+ nbsphinx >= 0.5
7
+ numpy
6
8
recommonmark
7
9
sphinx >= 1.4.6
8
10
sphinx_rtd_theme
9
- matplotlib
10
- ipyleaflet
11
- pandas
Original file line number Diff line number Diff line change 37
37
" - [Widget Events](Widget%20Events.ipynb) \n " ,
38
38
" - [Widget List](Widget%20List.ipynb) \n " ,
39
39
" - [Widget Styling](Widget%20Styling.ipynb)\n " ,
40
- " - [Layout Templates](Layoutt %20Templates.ipynb)\n " ,
40
+ " - [Layout Templates](Layout %20Templates.ipynb)\n " ,
41
41
" - [Widget Asynchronous](Widget%20Asynchronous.ipynb): how to pause and listen in the kernel for widget changes in the frontend."
42
42
]
43
43
},
Original file line number Diff line number Diff line change 756
756
" )"
757
757
]
758
758
},
759
+ {
760
+ "cell_type" : " markdown" ,
761
+ "metadata" : {},
762
+ "source" : [
763
+ " ### Password\n " ,
764
+ " \n " ,
765
+ " The `Password` widget hides user input on the screen. **This widget is not a secure way to collect sensitive information because:**\n " ,
766
+ " \n " ,
767
+ " + The contents of the `Password` widget are transmitted unencrypted.\n " ,
768
+ " + If the widget state is saved in the notebook the contents of the `Password` widget is stored as plain text."
769
+ ]
770
+ },
771
+ {
772
+ "cell_type" : " code" ,
773
+ "execution_count" : null ,
774
+ "metadata" : {},
775
+ "outputs" : [],
776
+ "source" : [
777
+ " widgets.Password(\n " ,
778
+ " value='password',\n " ,
779
+ " placeholder='Enter password',\n " ,
780
+ " description='Password:',\n " ,
781
+ " disabled=False\n " ,
782
+ " )"
783
+ ]
784
+ },
759
785
{
760
786
"cell_type" : " markdown" ,
761
787
"metadata" : {
You can’t perform that action at this time.
0 commit comments