-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnada.txt
76 lines (67 loc) · 4.84 KB
/
nada.txt
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Ui.FormControl variant="outlined">
<Ui.InputLabel htmlFor="outlined-adornment-password">Password</Ui.InputLabel>
<Ui.OutlinedInput
id="outlined-adornment-password"
type={user.showPassword ? 'text' : 'password'}
value={user.password}
name="password"
onChange={handleChange('password')}
endAdornment={
<Ui.InputAdornment position="end">
<Ui.IconButton
aria-label="toggle password visibility"
onClick={handleClickShowPassword}
onMouseDown={handleMouseDownPassword}
edge="end"
>
{user.showPassword ? <Ui.Visibility /> : <Ui.VisibilityOff />}
</Ui.IconButton>
</Ui.InputAdornment>
}
labelWidth={70}
/>
</Ui.FormControl>
<Ui.FormControl variant="outlined">
<Ui.InputLabel htmlFor="outlined-adornment-password">Password</Ui.InputLabel>
<Ui.OutlinedInput
id="outlined-adornment-password"
type={user.showPassword ? 'text' : 'password'}
value={user.password2}
name="password2"
onChange={handleChange('password2')}
endAdornment={
<Ui.InputAdornment position="end">
<Ui.IconButton
aria-label="toggle password visibility"
onClick={handleClickShowPassword}
onMouseDown={handleMouseDownPassword}
edge="end"
>
{user.showPassword ? <Ui.Visibility /> : <Ui.VisibilityOff />}
</Ui.IconButton>
</Ui.InputAdornment>
}
labelWidth={70}
/>
</Ui.FormControl>
<Ui.Grid item xs={12} sm={9} md={5} lg={4} xl={2}>
<Ui.Grid container spacing={3}>
<Ui.Grid item xs={5} sm={2} md={4} lg={6} xl={2}>
<Ui.Box>
<Ui.Typography component="p">
<svg viewBox="0 0 16 16" className="bi bi-code-slash img-fluid" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M4.854 4.146a.5.5 0 0 1 0 .708L1.707 8l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5a.5.5 0 0 1 .708 0zm6.292 0a.5.5 0 0 0 0 .708L14.293 8l-3.147 3.146a.5.5 0 0 0 .708.708l3.5-3.5a.5.5 0 0 0 0-.708l-3.5-3.5a.5.5 0 0 0-.708 0zm-.999-3.124a.5.5 0 0 1 .33.625l-4 13a.5.5 0 0 1-.955-.294l4-13a.5.5 0 0 1 .625-.33z"/>
</svg>
</Ui.Typography>
</Ui.Box>
</Ui.Grid>
<Ui.Grid item xs={5} sm={2} md={12} lg={12} xl={2}>
<Ui.Box>
<Ui.Typography component="h1" variant="h3" className="text-uppercase font-weight-bold">
Hola soy Cristhian, Un Web Developer.
</Ui.Typography>
</Ui.Box>
</Ui.Grid>
</Ui.Grid>
</Ui.Grid>
<img loading="lazy" src="https://i.imgur.com/Olx0SLG.jpg" alt="Foto De Perfil" className="rounded-circle img-fluid border" />